libpsyc/Makefile

41 lines
621 B
Makefile

.PHONY: doc test
all:
${MAKE} -C src
install: install-lib install-inc install-d
install-lib: all
${MAKE} -C lib install
install-inc: all
${MAKE} -C include install
install-d: all
${MAKE} -C d install
debug:
${MAKE} -C src debug
diet:
${MAKE} -C src diet
debugtest: testdebug test
testdebug: debug
${MAKE} -C test debug
test: all
${MAKE} -C test test nettest
doc:
doxygen
clean:
${MAKE} -C src clean
${MAKE} -C test clean
rm -rf doc/html doc/latex doc/man
help:
@/bin/echo -e "Usage:\n\tmake - compile\n\tmake diet - compile with diet libc\n\tmake test\n\tmake doc\n\tmake install [prefix=/usr]"