File: Makefile.am

package info (click to toggle)
sp-gxmlcpp 1.0.20040603-5
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 2,196 kB
  • sloc: sh: 11,118; cpp: 1,629; makefile: 118
file content (35 lines) | stat: -rw-r--r-- 915 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
31
32
33
34
35
## Process this file with automake to produce Makefile.in
AUTOMAKE_OPTIONS = 1.6

SUBDIRS = sp-gxmlcpp examples doc

# Install autodoc (all possible targets doxygen supports, if present)
docdir = $(datadir)/doc/$(PACKAGE)

doc_DATA = README NEWS AUTHORS ChangeLog ChangeLog.historic.schlund_cvs ChangeLog.historic.tincas COPYING
EXTRA_DIST = $(doc_DATA) .strap_auto .strap_dev .strap_run

doxygen:
	if test -f $(top_srcdir)/.cvsignore; then \
		cd $(top_srcdir) && \
		rm -rf autodoc && doxygen Doxyfile ;\
	fi

dist-hook: doxygen
	cp -a $(top_srcdir)/autodoc $(distdir)

install-data-local: doxygen
	if test -f $(top_srcdir)/.cvsignore; then \
		_dir=$(top_builddir) ;\
	else \
		_dir=$(top_srcdir) ;\
	fi && \
	cp -a "$$_dir"/autodoc/* $(docdir)

uninstall-local:
	for d in def html latex man rtf xml; do \
		chmod -R u+wx $(docdir)/$${d} 2>/dev/null || true; \
		rm -rf $(docdir)/$${d}; \
	done

.PHONY: doxygen