File: Makefile.am

package info (click to toggle)
fcml 1.3.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 9,536 kB
  • sloc: ansic: 57,510; cpp: 21,835; sh: 4,410; lex: 834; makefile: 508; yacc: 317
file content (22 lines) | stat: -rw-r--r-- 469 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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 > $@
	
install-data-hook:
	cd $(DESTDIR)$(docdir) && tar xf $(docpkg)
	
uninstall-hook:
	cd $(DESTDIR)$(docdir) && rm -rf html
	cd $(DESTDIR)$(docdir) && rm -rf latex
	
CLEANFILES = doxywarn.txt doxygen.stamp $(docpkg)

clean-local:
	rm -rf html
	rm -rf latex