File: Makefile.am

package info (click to toggle)
libdebian-installer 0.127
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 680 kB
  • sloc: ansic: 5,007; makefile: 182
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