Loki/Makefile
lfittl a08d3ae5c0 - Added clean-tmp target that only removes the object files, but leaves the static lib
git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@469 7ec92016-0320-0410-acc4-a06ded1c099a
2006-01-11 00:02:57 +00:00

17 lines
251 B
Makefile
Executable file

.PHONY: build check install clean-tmp clean
build:
$(MAKE) -C src
check: build
$(MAKE) -C test
install:
$(MAKE) -C src install
$(MAKE) -C include install
clean-tmp:
$(MAKE) -C src clean-tmp
clean:
$(MAKE) -C src clean
$(MAKE) -C test clean