c6e143aba7
git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@257 7ec92016-0320-0410-acc4-a06ded1c099a
34 lines
334 B
Makefile
Executable file
34 lines
334 B
Makefile
Executable file
|
|
MAKEFILE = Makefile
|
|
|
|
SUBTARGETS = \
|
|
sub-src \
|
|
sub-test \
|
|
|
|
all: $(SUBTARGETS)
|
|
|
|
sub-src: FORCE
|
|
cd src && \
|
|
$(MAKE) -f $(MAKEFILE)
|
|
@cd ..
|
|
|
|
sub-test: FORCE
|
|
cd test && \
|
|
$(MAKE) -f $(MAKEFILE)
|
|
@cd ..
|
|
|
|
|
|
|
|
clean:
|
|
cd src && \
|
|
$(MAKE) -f $(MAKEFILE) clean
|
|
@cd ..
|
|
cd test && \
|
|
$(MAKE) -f $(MAKEFILE) clean
|
|
@cd ..
|
|
|
|
|
|
|
|
|
|
FORCE:
|
|
|