begin cool doxygen look :-)
[ozulis.git] / Makefile
blob1002d0883606b94973c73efa3734fcac2aeb58c0
1 all:
3 BUILDDIR = build
4 MAKEOPT = --quiet
6 -include config.mk
8 all:
9 test -d $(BUILDDIR) || ./configure --build-dir $(BUILDDIR)
10 make $(MAKEOPT) -C $(BUILDDIR)
12 doc:
13 doxygen doc/Doxyfile && cp doc/tabs.css doc/html/
15 check: all
16 make $(MAKEOPT) -C $(BUILDDIR)
17 @echo
18 @echo " ---------------------------------"
19 @echo " | TEST SUITE |"
20 @echo " ---------------------------------"
21 @echo
23 clean:
24 make $(MAKEOPT) -C $(BUILDDIR) clean
25 # find . \( -name '*~' \) -exec rm -f {} \;
27 distclean:
28 rm -rf $(BUILDDIR) config.mk
30 .PHONY: doc help
32 help:
33 @echo "build build the project"
34 @echo "check check the project"
35 @echo "clean clean the project"
36 @echo "distclean distclean the project"
37 @echo "doc generate the doxygen html documentation"