Loki/Makefile
lfittl d51dd537ea - Make it easier to overwrite CXXFLAGS, by using CPPFLAGS for loki specific stuff
- Don't create temporary object files anymore, use implicit rule for binaries
- Removed unneeded DESTDIR= line


git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@463 7ec92016-0320-0410-acc4-a06ded1c099a
2006-01-09 23:56:13 +00:00

14 lines
203 B
Makefile
Executable file

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