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 39 40 41 42 43 44 45
|
SUBDIRS = \
include \
config \
src
EXTRA_DIST = \
autogen.sh \
config/m4/.secret-world-domination-project
MAINTAINERCLEANFILES = \
configure \
GNUmakefile.in \
aclocal.m4 \
config/autoconf/compile \
config/autoconf/config.guess \
config/autoconf/config.sub \
config/autoconf/depcomp \
config/autoconf/install-sh \
config/autoconf/ltmain.sh \
config/autoconf/mdate-sh \
config/autoconf/missing \
config/autoconf/texinfo.tex \
config/m4/libtool.m4 \
config/m4/ltoptions.m4 \
config/m4/ltsugar.m4 \
config/m4/ltversion.m4 \
config/m4/lt~obsolete.m4 \
$(DIST_ARCHIVES)
dist_doc_DATA = \
INSTALL \
LICENSE \
README
maintainer-clean-local:
-chmod -R a+rw $(distdir)
-rm -fr $(distdir)
docs : htmldocs
htmldocs:
@echo 'Running doxygen with local Doxyfile'
-doxygen Doxyfile
|