1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
SUBDIRS = html
man3dir = $(mandir)/man3
docdir_log = $(docdir)/@PACKAGE_TARNAME@-@PACKAGE_VERSION@
EXTRA_DIST = \
mainPage.txt
.PHONY: dox pdf
all-local: dox
dox: html html/api/index.html
html/api/index.html: Doxyfile
@DOXYGEN@
install-data-local:
$(mkinstalldirs) $(DESTDIR)$(man3dir)
@for i in ./man/man3/log4tango.3 ./man/man3/log4tango_*.3; do \
inst=`basename $$i | sed 's/_/::/g'`; \
echo "$(INSTALL_DATA) $$i $(DESTDIR)$(man3dir)/$$inst"; \
$(INSTALL_DATA) $$i $(DESTDIR)$(man3dir)/$$inst; \
done
$(mkinstalldirs) $(DESTDIR)$(docdir_log)
cp -r html/. $(DESTDIR)$(docdir_log)
$(RM) -r -f $(DESTDIR)$(docdir_log)/CVS \
$(DESTDIR)$(docdir_log)/Makefile.am \
$(DESTDIR)$(docdir_log)/Makefile.in \
$(DESTDIR)$(docdir_log)/Makefile
uninstall-local:
$(RM) $(DESTDIR)$(man3dir)/log4tango.3
$(RM) $(DESTDIR)$(man3dir)/log4tango::*.3
$(RM) -r -f $(DESTDIR)$(docdir_log)
clean-local:
$(RM) -r latex
$(RM) -r html/api man @PACKAGE_TARNAME@.ps @PACKAGE_TARNAME@.pdf
|