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

24 lines
320 B
Makefile

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