Makefile - Add TARGETS to clean-objs
This commit is contained in:
parent
8703edbec8
commit
a0377959dc
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -4,7 +4,7 @@ include Makeconf
|
||||||
CXX_FLAGS += -MMD
|
CXX_FLAGS += -MMD
|
||||||
depfiles := $(wildcard *.d **/*.d)
|
depfiles := $(wildcard *.d **/*.d)
|
||||||
|
|
||||||
clean-objs := $(foreach t,$(TARGETS),$(modules_$(t))) $(depfiles)
|
clean-objs := $(TARGETS) $(foreach t,$(TARGETS),$(modules_$(t))) $(depfiles)
|
||||||
cmd = $(VERBOSE)g++ $(CXX_FLAGS) -o $@ $^
|
cmd = $(VERBOSE)g++ $(CXX_FLAGS) -o $@ $^
|
||||||
msg = $(or $(verb_$@),finalize) $@
|
msg = $(or $(verb_$@),finalize) $@
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue