git-svn-id: https://svn.code.sf.net/p/flaim/code/trunk@1092 0109f412-320b-0410-ab79-c3e0c5ffbbe6
16 lines
294 B
Makefile
16 lines
294 B
Makefile
docpkg = $(PACKAGE_TARNAME)-doxy-$(PACKAGE_VERSION).tar.gz
|
|
|
|
doc_DATA = $(docpkg)
|
|
|
|
$(docpkg): doxygen.stamp
|
|
tar chof - html | gzip -9 -c >$@
|
|
|
|
doxygen.stamp: doxyfile
|
|
$(DOXYGEN) $(DOXYFLAGS) $<
|
|
echo Timestamp > $@
|
|
|
|
CLEANFILES = doxywarn.txt doxygen.stamp $(docpkg)
|
|
|
|
clean-local:
|
|
rm -rf html
|