File: Makefile.am

package info (click to toggle)
opensaml 1.1a-2
  • links: PTS
  • area: main
  • in suites: etch-m68k
  • size: 2,360 kB
  • ctags: 1,771
  • sloc: cpp: 10,614; sh: 8,329; makefile: 199; ansic: 23
file content (30 lines) | stat: -rw-r--r-- 743 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
AUTOMAKE_OPTIONS = foreign

ACLOCAL_AMFLAGS = -I .

EXTRA_DIST = schemas doc OpenSAML.dsw libtool.m4 acx_pthread.m4 depcomp \
	config_win32.h opensaml.spec.in opensaml.spec pkginfo.in pkginfo checkinstall

dist-hook:
	rm -rf `find $(distdir)/schemas -name CVS`
	rm -rf `find $(distdir)/schemas -name Makefile`
	rm -rf `find $(distdir)/doc -name CVS`
	rm -rf `find $(distdir)/doc -name Makefile`

SUBDIRS = doc schemas saml test

all-local: opensaml.spec pkginfo

opensaml.spec: opensaml.spec.in Makefile
	rm -f $@.tmp
	sed < $< > $@.tmp \
	    -e 's:@-VERSION-@:${VERSION}:'
	mv $@.tmp $@

pkginfo: pkginfo.in Makefile
	rm -f $@.tmp
	sed < $< > $@.tmp \
	    -e 's:@-VERSION-@:${VERSION}:'
	mv $@.tmp $@

DISTCLEANFILES = opensaml.spec pkginfo