Merge pull request #722 from fredizzimo/fix_always_linking
Fix the ldflags.txt and obj.txt checks
This commit is contained in:
commit
751832192c
|
@ -332,11 +332,13 @@ $1/compiler.txt: $1/force
|
||||||
$$(CC) --version | cmp -s - $$@ || $$(CC) --version > $$@
|
$$(CC) --version | cmp -s - $$@ || $$(CC) --version > $$@
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
.PRECIOUS: $(MASTER_OUTPUT)/obj.txt
|
||||||
$(MASTER_OUTPUT)/obj.txt: $(MASTER_OUTPUT)/force
|
$(MASTER_OUTPUT)/obj.txt: $(MASTER_OUTPUT)/force
|
||||||
echo '$(OBJ)' | cmp -s - $$@ || echo '$(OBJ)' > $$@
|
echo '$(OBJ)' | cmp -s - $@ || echo '$(OBJ)' > $@
|
||||||
|
|
||||||
|
.PRECIOUS: $(MASTER_OUTPUT)/ldflags.txt
|
||||||
$(MASTER_OUTPUT)/ldflags.txt: $(MASTER_OUTPUT)/force
|
$(MASTER_OUTPUT)/ldflags.txt: $(MASTER_OUTPUT)/force
|
||||||
echo '$(LDFLAGS)' | cmp -s - $$@ || echo '$(LDFLAGS)' > $$@
|
echo '$(LDFLAGS)' | cmp -s - $@ || echo '$(LDFLAGS)' > $@
|
||||||
|
|
||||||
|
|
||||||
# We have to use static rules for the .d files for some reason
|
# We have to use static rules for the .d files for some reason
|
||||||
|
|
Loading…
Reference in New Issue