2011-04-19 20:31:43 +00:00
|
|
|
.PHONY: doc
|
2011-04-21 12:20:24 +00:00
|
|
|
.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-04-21 12:20:24 +00:00
|
|
|
test:
|
2011-04-30 14:41:30 +00:00
|
|
|
${MAKE} -C test 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
|
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"
|