summaryrefslogtreecommitdiff
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 04:48:19 -0400
commit473425374f517ae3bf83fc8f59ea89c28e69ba91 (patch)
tree7b65e5e2ced8050e42ee4681053ecef5b86231aa /project
parent9eda979fc5ebc5bdf6056e24fc2af787bee3eea2 (diff)
downloadslibtool-473425374f517ae3bf83fc8f59ea89c28e69ba91.tar.bz2
slibtool-473425374f517ae3bf83fc8f59ea89c28e69ba91.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