libpsyc/Makefile

34 lines
478 B
Makefile
Raw Normal View History

2011-04-19 20:31:43 +00:00
.PHONY: doc
.PHONY: test
2011-04-30 13:42:48 +00:00
.PHONY: lib
2011-04-19 20:52:08 +00:00
2011-04-30 14:05:48 +00:00
all:
${MAKE} -C src
2011-04-19 20:52:08 +00:00
2011-04-30 14:41:30 +00:00
debug:
${MAKE} -C src debug
2011-04-19 20:52:08 +00:00
diet:
2011-04-30 13:42:48 +00:00
${MAKE} -C src diet
2011-04-19 20:52:08 +00:00
2011-05-08 01:15:06 +00:00
debugtest: testdebug test
testdebug: debug
${MAKE} -C test debug
test: all
2011-04-30 14:41:30 +00:00
${MAKE} -C test test
2011-05-06 11:34:04 +00:00
${MAKE} -C test nettest
${MAKE} -C test nettestr
2011-04-19 20:31:43 +00:00
doc:
doxygen
2011-04-19 20:52:08 +00:00
clean:
make -C src clean
make -C test clean
rm -rf doc/html doc/latex doc/man
2011-04-30 14:05:48 +00:00
help:
@/bin/echo -e "Usage:\n\tmake - compile\n\tmake diet - compile with diet libc\n\tmake test\n\tmake doc"