File: Makefile.am

package info (click to toggle)
regina-normal 4.6-1.1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 18,696 kB
  • ctags: 8,499
  • sloc: cpp: 71,120; ansic: 12,923; sh: 10,624; perl: 3,294; makefile: 959; python: 188
file content (39 lines) | stat: -rw-r--r-- 931 bytes parent folder | download | duplicates (2)
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
36
37
38
39
##
##  Regina - A Normal Surface Theory Calculator
##  Makefile Template
##
##  Process this file with automake in the top-level directory
##  to produce Makefile.in.
##

KDE_OPTIONS=noautodist

## ----------------------- Variables ---------------------------------

engine_index = @top_builddir@/docs/engine/index.html

extensions = css dot gif html jpg png txt

pkgdocdir = $(pkgdatadir)/engine-docs

## ----------------------- Custom targets ----------------------------

all-local : $(engine_index)
$(engine_index) :
	@DOXYGEN@ @top_builddir@/engine/doxygen/docs.conf
	cp `find @top_srcdir@/engine -name "*.png"` .

mostlyclean-local :
	rm -f *.html *.png *.gif *.css *.dot

install-data-local :
	$(mkinstalldirs) "$(DESTDIR)$(pkgdocdir)"
	for i in $(extensions); do \
		for j in `find . -name "*.$$i"`; do \
			$(INSTALL_DATA) $$j "$(DESTDIR)$(pkgdocdir)"; \
		done; \
	done

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