2011-04-19 20:31:43 +00:00
|
|
|
.PHONY: doc
|
2011-04-21 12:20:24 +00:00
|
|
|
.PHONY: test
|
2011-04-19 20:52:08 +00:00
|
|
|
|
|
|
|
default:
|
2011-04-21 12:20:24 +00:00
|
|
|
@/bin/echo -e "Usage:\n\tmake diet - compile with diet libc\n\tmake lib - compile with normal gnu libc\n\tmake test\n\tmake doc"
|
2011-04-19 20:52:08 +00:00
|
|
|
|
|
|
|
lib:
|
|
|
|
make -C src lib
|
|
|
|
|
|
|
|
diet:
|
|
|
|
make -C src diet
|
|
|
|
|
2011-04-21 12:20:24 +00:00
|
|
|
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
|
2011-04-21 12:20:24 +00:00
|
|
|
make -C test clean
|
|
|
|
rm -rf doc/html doc/latex doc/man
|