Loki/test/Makefile
syntheticpp 95b163d2bd add pimpl/rimpl tests
git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@472 7ec92016-0320-0410-acc4-a06ded1c099a
2006-01-15 22:09:32 +00:00

11 lines
293 B
Makefile
Executable file

SUBTARGETS = Factory flex_string Longevity OrderedStatic RegressionTest \
SafeFormat ScopeGuard Singleton SmallObj Visitor Pimpl
.PHONY: clean all $(SUBTARGETS)
all: $(SUBTARGETS)
$(SUBTARGETS):
$(MAKE) -C $@
clean:
for subtarget in $(SUBTARGETS); do $(MAKE) -C $$subtarget clean ; done