Loki/Makefile
syntheticpp f717540760 patch Makefiles, Thanks to Lukas Fittl
git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@406 7ec92016-0320-0410-acc4-a06ded1c099a
2006-01-04 23:35:09 +00:00

16 lines
216 B
Makefile
Executable file

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