1
0
Fork 0
mirror of git://git.psyc.eu/libpsyc synced 2024-08-15 03:19:02 +00:00
libpsyc/Makefile
2011-04-19 22:52:08 +02:00

22 lines
314 B
Makefile

.PHONY: doc
.PHONY: tests
default:
@/bin/echo -e "Usage:\n\tmake diet - compile with diet libc\n\tmake lib - compile with normal gnu libc\n\tmake tests\n\tmake doc"
lib:
make -C src lib
diet:
make -C src diet
tests:
make -C tests
doc:
doxygen
clean:
make -C src clean
make -C tests clean
rm -rf doc