Loki/test/Makefile
syntheticpp 2ee111e98a upate to general makefiles
git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@263 7ec92016-0320-0410-acc4-a06ded1c099a
2005-09-25 00:06:40 +00:00

59 lines
841 B
Makefile
Executable file

MAKEFILE = Makefile
SUBTARGETS = \
sub-Factory \
sub-flex_string \
sub-RegressionTest \
sub-SafeFormat \
sub-SmallObj
all: $(SUBTARGETS)
sub-Factory: FORCE
cd Factory && \
$(MAKE) -f $(MAKEFILE)
@cd ..
sub-flex_string: FORCE
cd flex_string && \
$(MAKE) -f $(MAKEFILE)
@cd ..
sub-RegressionTest: FORCE
cd RegressionTest && \
$(MAKE) -f $(MAKEFILE)
@cd ..
sub-SafeFormat: FORCE
cd SafeFormat && \
$(MAKE) -f $(MAKEFILE)
@cd ..
sub-SmallObj: FORCE
cd SmallObj && \
$(MAKE) -f $(MAKEFILE)
@cd ..
clean:
cd Factory && \
$(MAKE) -f $(MAKEFILE) clean
@cd ..
cd flex_string && \
$(MAKE) -f $(MAKEFILE) clean
@cd ..
cd RegressionTest && \
$(MAKE) -f $(MAKEFILE) clean
@cd ..
cd SafeFormat && \
$(MAKE) -f $(MAKEFILE) clean
@cd ..
cd SmallObj && \
$(MAKE) -f $(MAKEFILE) clean
@cd ..
FORCE: