libpsyc/Makefile

23 lines
338 B
Makefile
Raw Normal View History

2011-04-19 20:31:43 +00:00
.PHONY: doc
.PHONY: test
2011-04-19 20:52:08 +00:00
default:
@/bin/echo -e "Usage:\n\tmake diet - compile with diet libc\n\tmake glibc - compile with normal gnu libc\n\tmake test\n\tmake doc"
2011-04-19 20:52:08 +00:00
glibc:
make -C src glibc
2011-04-19 20:52:08 +00:00
diet:
make -C src diet
test:
make -C test
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