3 # prefix for installing the binaries and headers
8 NICE_DOXY = @echo " DOXYGEN"; (cat Doxyfile; echo "QUIET=YES") | doxygen -
9 NICE_CLEAN = @echo " CLEAN"; $(RM)
25 install: install-man install-html
28 $(NICE) for f in `find reference/man -type f | cut -b11-`; do \
29 echo " INSTALL $(prefix)/share/$$f"; \
30 install -p -m 0644 -D reference/$$f $(prefix)/share/$$f; \
34 $(NICE) for f in `find reference/html -type f | cut -b11-`; do \
35 echo " INSTALL $(prefix)/share/doc/posixx/$$f"; \
36 install -p -m 0644 -D reference/$$f $(prefix)/share/doc/posixx/$$f; \
41 @ln -fs ../../src include/posixx
44 $(NICE_CLEAN) -r reference include
46 .PHONY: default all doc install install-man install-doc clean