mirror of
git://git.psyc.eu/libpsyc
synced 2024-08-15 03:19:02 +00:00
26 lines
355 B
Makefile
26 lines
355 B
Makefile
.PHONY: doc
|
|
.PHONY: test
|
|
.PHONY: lib
|
|
|
|
all:
|
|
${MAKE} -C src
|
|
|
|
debug:
|
|
${MAKE} -C src debug
|
|
|
|
diet:
|
|
${MAKE} -C src diet
|
|
|
|
test:
|
|
${MAKE} -C test 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"
|