File: Makefile.am

package info (click to toggle)
libdatrie 0.2.14-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,244 kB
  • sloc: sh: 5,045; ansic: 4,292; makefile: 205
file content (30 lines) | stat: -rw-r--r-- 476 bytes parent folder | download | duplicates (6)
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
if ENABLE_DOXYGEN_DOC

all-local: doxygen.stamp

doxygen.stamp: $(top_srcdir)/datrie/*.h $(top_srcdir)/datrie/*.c
	$(DOXYGEN)
	touch doxygen.stamp

install-data-local: install-html

install-html:
	$(INSTALL) -d $(DESTDIR)$(htmldocdir)
	$(INSTALL_DATA) html/* $(DESTDIR)$(htmldocdir)

uninstall-local:
	rm -rf $(DESTDIR)$(htmldocdir)

clean-local:
	rm -rf html man
	rm -f doxygen.stamp
	rm -f doxygen_sqlite3.db

else

install-data-local:
uninstall-local:
clean-local:

endif