3f7449d7bc
git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@451 7ec92016-0320-0410-acc4-a06ded1c099a
11 lines
287 B
Makefile
Executable file
11 lines
287 B
Makefile
Executable file
SUBTARGETS = Factory flex_string Longevity OrderedStatic RegressionTest \
|
|
SafeFormat ScopeGuard Singleton SmallObj Visitor
|
|
|
|
.PHONY: clean all $(SUBTARGETS)
|
|
all: $(SUBTARGETS)
|
|
|
|
$(SUBTARGETS):
|
|
$(MAKE) -C $@
|
|
|
|
clean:
|
|
for subtarget in $(SUBTARGETS); do $(MAKE) -C $$subtarget clean ; done
|