Loki/test/Makefile
syntheticpp de2a6e513d linux fixes
git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@474 7ec92016-0320-0410-acc4-a06ded1c099a
2006-01-15 22:32:54 +00:00

11 lines
294 B
Makefile
Executable file

SUBTARGETS = Factory flex_string Longevity OrderedStatic Pimpl 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