- Removed for loop from test/Makefile to make it work with mingw
git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@481 7ec92016-0320-0410-acc4-a06ded1c099a
This commit is contained in:
parent
c69cdedf2e
commit
658a2e5c79
1 changed files with 5 additions and 3 deletions
|
@ -1,11 +1,13 @@
|
|||
SUBTARGETS = Factory flex_string Longevity OrderedStatic Pimpl RegressionTest \
|
||||
SafeFormat ScopeGuard Singleton SmallObj Visitor
|
||||
SUBTARGETS_CLEAN = $(foreach SUBTARGET,$(SUBTARGETS),$(SUBTARGET)-clean)
|
||||
|
||||
.PHONY: clean all $(SUBTARGETS)
|
||||
.PHONY: clean all $(SUBTARGETS) $(SUBTARGETS_CLEAN)
|
||||
all: $(SUBTARGETS)
|
||||
clean: $(SUBTARGETS_CLEAN)
|
||||
|
||||
$(SUBTARGETS):
|
||||
$(MAKE) -C $@
|
||||
|
||||
clean:
|
||||
for subtarget in $(SUBTARGETS); do $(MAKE) -C $$subtarget clean ; done
|
||||
$(SUBTARGETS_CLEAN):
|
||||
$(MAKE) -C $(@:-clean=) clean
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue