[go: up one dir, main page]

Menu

[8c9bd9]: / Makefile.am  Maximize  Restore  History

Download this file

17 lines (14 with data), 467 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
ACLOCAL_AMFLAGS="-Im4"
SUBDIRS = src man etc doc tests
dist_noinst_DATA = doxygen.conf.in
nodist_noinst_DATA = doxygen.conf
dist_doc_DATA = README COPYING COPYING_LGPL ChangeLog TestLog
CLEANFILES = doxygen.conf
doxygen.conf: doxygen.conf.in
sed \
-e 's|@PACKAGE_VERSION[@]|$(PACKAGE_VERSION)|g' \
-e 's|@HAVE_DOT[@]|$(HAVE_DOT)|g' \
$< >$@
uninstall-hook:
if test -d ${docdir}; then rmdir ${docdir}; fi
if test -d ${pkgdatadir}; then rmdir ${pkgdatadir}; fi