File: Makefile.am

package info (click to toggle)
libmtp 1.0.3-1%2Bsqueeze2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 3,024 kB
  • ctags: 2,871
  • sloc: ansic: 17,749; sh: 10,337; makefile: 145; python: 26; perl: 13
file content (20 lines) | stat: -rw-r--r-- 397 bytes parent folder | download | duplicates (19)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
EXTRA_DIST=Doxyfile.in examples.h mainpage.h

if HAVE_DOXYGEN
pkgdocdir=$(datadir)/doc/$(PACKAGE)-$(VERSION)
htmldocdir=$(pkgdocdir)/html

all-local:
	doxygen

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

uninstall-local:
	$(RM) -r $(DESTDIR)$(htmldocdir)
	$(RM) -r $(DESTDIR)$(pkgdocdir)

clean-local:
	$(RM) -r html latex man
endif