1
0
Fork 0
mirror of git://git.psyc.eu/libpsyc synced 2024-07-31 00:21:03 +00:00
libpsyc/Makefile
2011-05-08 04:11:36 +02:00

34 lines
484 B
Makefile

.PHONY: doc
.PHONY: test
.PHONY: lib
all:
${MAKE} -C src
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
${MAKE} -C test nettest
${MAKE} -C test nettestr
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"