File: Makefile.am

package info (click to toggle)
cwidget 0.5.17-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 3,532 kB
  • ctags: 2,498
  • sloc: cpp: 15,800; sh: 11,985; makefile: 229; sed: 16; perl: 15
file content (31 lines) | stat: -rw-r--r-- 847 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
MAINTAINERCLEANFILES=Makefile.in

DOXYGEN=@DOXYGEN@
IKIWIKI=@IKIWIKI@

# Distribute *.mdwn, *.png, and *.css from the ikiwiki directory.
# This trades off the danger of distributing too much (e.g., what
# would happen if we distributed the whole directory, tilde-files and
# all) against the pain of forcing everyone who adds a file to the
# documentation to register it (given that ikiwiki doesn't make it
# easy to audit for missing files).
EXTRA_DIST = $(srcdir)/ikiwiki.setup $(shell find $(srcdir)/ikiwiki -name \*.mdwn -or -name \*.png -or -name \*.css)

clean-local:
	rm -rf html latex ikiwiki-html
	rm -f doxygen*.tmp

doxygen:
if DOXYGEN
	mkdir -p html/documentation/api
	(cd $(top_srcdir) && $(DOXYGEN))
endif

ikiwiki:
if IKIWIKI
	(cd $(srcdir) && ikiwiki --setup ikiwiki.setup)
endif

doc: doxygen ikiwiki

.PHONY: doc doxygen ikiwiki