summaryrefslogtreecommitdiffstats
path: root/doc/Makefile.am
blob: d42603b2cb5109eb036a5a90360bc95ac29c912b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
TARGET_DIR=$(docdir)

clean-local:
	cd $(top_srcdir) && rm -rf doc/*.html

install-data-local:
	installfiles=`echo $(top_srcdir)/doc/*.html`; \
	if test "$$installfiles" = '$(top_srcdir)/doc/*.html'; \
	then echo '-- Nothing to install' ; \
	else \
	  $(mkinstalldirs) $(DESTDIR)$(TARGET_DIR); \
	  for i in $$installfiles; do \
	    echo '-- Installing '$$i ; \
	    $(INSTALL_DATA) $$i $(DESTDIR)$(TARGET_DIR); \
	  done; \
	fi

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

DISTCLEANFILES = \
	Makefile.in