5d8ea8 build system: fix dependency of app.tag, avoid unconditional step execution.

Authored and Committed by midipix 8 years ago
    build system: fix dependency of app.tag, avoid unconditional step execution.
    
        
file modified
+1 -1
Makefile.in CHANGED
@@ -115,7 +115,7 @@ app: package-app app-tag
115
115
116
116
app-tag: package-app app.tag
117
117
118
- app.tag: package-app
118
+ app.tag:
119
119
cp $(PACKAGE_APP) $(APP)
120
120
touch app.tag
121
121
file modified
+3 -0
project/custom.mk CHANGED
@@ -31,6 +31,7 @@ ifeq ($(ALL_STATIC),yes)
31
31
package-app: static-app
32
32
app: PACKAGE_APP = $(STATIC_APP)
33
33
app-tag: PACKAGE_APP = $(STATIC_APP)
34
+ app.tag: $(STATIC_APP)
34
35
35
36
36
37
else ifeq ($(ALL_SHARED),yes)
@@ -38,6 +39,7 @@ else ifeq ($(ALL_SHARED),yes)
38
39
package-app: shared-app
39
40
app: PACKAGE_APP = $(SHARED_APP)
40
41
app-tag: PACKAGE_APP = $(SHARED_APP)
42
+ app.tag: $(SHARED_APP)
41
43
42
44
43
45
else
@@ -45,5 +47,6 @@ else
45
47
package-app: default-app
46
48
app: PACKAGE_APP = $(DEFAULT_APP)
47
49
app-tag: PACKAGE_APP = $(DEFAULT_APP)
50
+ app.tag: $(DEFAULT_APP)
48
51
49
52
endif