File: Makefile.am

package info (click to toggle)
libdebian-installer 0.77%2Bsqueeze3
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 1,788 kB
  • ctags: 833
  • sloc: sh: 10,131; ansic: 4,933; makefile: 169
file content (20 lines) | stat: -rw-r--r-- 408 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
docdir = $(datadir)/doc/$(PACKAGE)$(LIBRARY_VERSION_MAJOR)-dev

doc html:
	$(DOXYGEN)

install-data-local:
	@if [ -e html ]; then \
	  $(MAKE) install-real-html; \
	fi

clean-local:
	rm -rf html latex

install-real-html: html
	$(mkinstalldirs) $(DESTDIR)$(docdir)/html
	@for p in html/*; do \
	  echo " $(INSTALL_DATA) $$p $(DESTDIR)$(docdir)/$$p"; \
	  $(INSTALL_DATA) $$p $(DESTDIR)$(docdir)/$$p; \
	done