File: Makefile.am

package info (click to toggle)
libbrahe 1.3.2-10
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,576 kB
  • sloc: sh: 10,143; ansic: 1,289; cpp: 274; makefile: 58
file content (27 lines) | stat: -rw-r--r-- 524 bytes parent folder | download | duplicates (4)
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
AUTOMAKE_OPTIONS = foreign
ACLOCAL_AMFLAGS = -I m4

if HAVE_DOXYGEN
DOC_DIR = docs
else
DOC_DIR =
endif

SUBDIRS = src test $(DOC_DIR)
EXTRA_DIST = LicenseClosedSource.txt LicenseOpenSource.txt reconf cleanup Brahe.sln

dist-hook:

	if test -d BraheDLL; then \
		mkdir $(distdir)/BraheDLL; \
		cp -p BraheDLL/* $(distdir)/BraheDLL; \
	fi

	if test -d BraheTest; then \
		mkdir $(distdir)/BraheTest; \
		cp -p BraheTest/* $(distdir)/BraheTest; \
	fi

uninstall-local:
	rm -rf $(distdir)/BraheDLL
	rm -rf $(distdir)/BraheTest