File: Makefile.am

package info (click to toggle)
libfolia 2.21.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,140 kB
  • sloc: cpp: 16,225; ansic: 162; sh: 96; makefile: 44
file content (20 lines) | stat: -rw-r--r-- 420 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
man1_MANS = folialint.1
EXTRA_DIST = folialint.1 dox.cfg

# https://stackoverflow.com/questions/10682603/generating-and-installing-doxygen-documentation-with-autotools

if HAVE_DOXYGEN
directory = $(top_srcdir)/docs/html

$(directory): doxyfile.stamp

doxyfile.stamp: dox.cfg
	$(DOXYGEN) $^
	echo Timestamp > $@

CLEANFILES = doxyfile.stamp

all-local: doxyfile.stamp
clean-local:
	-rm -rf $(top_srcdir)/docs/html
endif