[go: up one dir, main page]

Menu

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

Download this file

23 lines (18 with data), 581 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
htmldir = $(docdir)/html/C
dist_noinst_DATA = doxygen.conf.in Makefile.am
nodist_noinst_DATA = doxygen.conf
dist_html_DATA = *.html *.css *.png *.gif
CLEANFILES = doxygen.conf
doxygen.conf: doxygen.conf.in
sed \
-e 's|@PACKAGE_VERSION[@]|$(PACKAGE_VERSION)|g' \
-e 's|@top_srcdir[@]|$(top_srcdir)|g' \
$< >$@
index.html: doxygen.conf \
$(top_srcdir)/src/flom.h \
$(top_srcdir)/src/flom_errors.h \
$(top_srcdir)/src/flom_handle.h \
$(top_srcdir)/src/flom_types.h
$(DOXYGEN) doxygen.conf
uninstall-hook:
if test -d ${docdir}/html/C; then rmdir ${docdir}/html/C; fi