[make] [lib/version] remove a misplaced .PHONY (#170)
When lib/version was included, a rule depended on .PHONY. This would unexpectedly invoke other rules defined as dependent on .PHONY (standard phony-ness signal). As a side effect, this used to generate srcfiles.txt and include_paths.txt in build dir. Since they are useful, we might always build those anyway, and not make them phony at all.
This commit is contained in:
committed by
Travis Geiselbrecht
parent
9a2fcf2b60
commit
3972b18697
@@ -73,7 +73,7 @@ ARCH_CPPFLAGS :=
|
||||
ARCH_ASMFLAGS :=
|
||||
|
||||
# top level rule
|
||||
all:: $(OUTBIN) $(OUTELF).lst $(OUTELF).debug.lst $(OUTELF).sym $(OUTELF).sym.sorted $(OUTELF).size $(OUTELF).dump
|
||||
all:: $(OUTBIN) $(OUTELF).lst $(OUTELF).debug.lst $(OUTELF).sym $(OUTELF).sym.sorted $(OUTELF).size $(OUTELF).dump $(BUILDDIR)/srcfiles.txt $(BUILDDIR)/include_paths.txt
|
||||
|
||||
# master module object list
|
||||
ALLOBJS_MODULE :=
|
||||
|
||||
Reference in New Issue
Block a user