File: Makefile.am

package info (click to toggle)
libp11 0.4.17-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 2,944 kB
  • sloc: ansic: 13,672; sh: 6,441; makefile: 229
file content (23 lines) | stat: -rw-r--r-- 408 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
MAINTAINERCLEANFILES = $(srcdir)/Makefile.in

dist_doc_DATA = 
dist_noinst_DATA = $(srcdir)/doxygen-footer.html $(srcdir)/*.gif

if ENABLE_API_DOC

apidoc_DATA=api.out/html/*

api.out/html/*: api.out
api.out:	$(top_srcdir)/src/*.h \
		$(srcdir)/*.gif \
		doxygen.conf
	-rm -fr api.out
	$(DOXYGEN) doxygen.conf
	cp "$(srcdir)"/*.gif api.out/html

endif

clean-local:
	-rm -fr api.out

# vim: set noexpandtab: