summaryrefslogtreecommitdiffhomepage
path: root/project
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2016-05-06 04:48:19 -0400
committermidipix <writeonce@midipix.org>2016-05-06 11:02:25 -0400
commit5d8ea842bc6de80bf20c164858ef456dd1c5cb3e (patch)
treefed374feb85b5de2baaeb8c2805711eb34dd28e8 /project
parent94b3354943a76a1fe7a31ad807c2b55fded49f64 (diff)
downloadsofort-5d8ea842bc6de80bf20c164858ef456dd1c5cb3e.tar.bz2
sofort-5d8ea842bc6de80bf20c164858ef456dd1c5cb3e.tar.xz
build system: fix dependency of app.tag, avoid unconditional step execution.
Diffstat (limited to 'project')
-rw-r--r--project/custom.mk3
1 files changed, 3 insertions, 0 deletions
diff --git a/project/custom.mk b/project/custom.mk
index b0adcdd..3845121 100644
--- a/project/custom.mk
+++ b/project/custom.mk
@@ -31,6 +31,7 @@ ifeq ($(ALL_STATIC),yes)
package-app: static-app
app: PACKAGE_APP = $(STATIC_APP)
app-tag: PACKAGE_APP = $(STATIC_APP)
+app.tag: $(STATIC_APP)
else ifeq ($(ALL_SHARED),yes)
@@ -38,6 +39,7 @@ else ifeq ($(ALL_SHARED),yes)
package-app: shared-app
app: PACKAGE_APP = $(SHARED_APP)
app-tag: PACKAGE_APP = $(SHARED_APP)
+app.tag: $(SHARED_APP)
else
@@ -45,5 +47,6 @@ else
package-app: default-app
app: PACKAGE_APP = $(DEFAULT_APP)
app-tag: PACKAGE_APP = $(DEFAULT_APP)
+app.tag: $(DEFAULT_APP)
endif