File: Makefile.am

package info (click to toggle)
libassa 3.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 3,084 kB
  • ctags: 2,323
  • sloc: cpp: 15,641; sh: 8,704; makefile: 372; perl: 51
file content (55 lines) | stat: -rw-r--r-- 1,115 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
## $Id: Makefile.am,v 1.14 2007/08/09 02:19:19 vlg Exp $

SUBDIRS = . assa utils doc tests examples

DIST_SUBDIRS = assa utils doc tests examples 

EXTRA_DIST = \
	libassa.spec.in \
	bootstrap \
	macros/BB_ENABLE_DOXYGEN.m4

pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = assa-@ASSA_RELEASE@.pc

dist-hook: libassa.spec
	cp libassa.spec $(distdir)
	if test -d debian; then \
		mkdir $(distdir)/debian; \
		for file in debian/*; do \
			if test -f $$file; then \
				cp -p $$file $(distdir)/debian; \
			fi \
		done \
	fi

docs:
	${MAKE} -C doc

doc-dist: docs
	tar -zcf ${PACKAGE}-docs-${VERSION}.tar.gz  \
		-C $(top_srcdir)/doc/html --exclude CVS .

clean-local:
	-rm -f *~

distclean-local:
	rm -rf autom4te.cache

MAINTAINERCLEANFILES = \
	*.log core FILE *~ Makefile.in configure config.h.in \
	config.status aclocal.m4 config.guess config.sub \
	depcomp install-sh mkinstalldirs missing


# Run ldconfig after installing the library:
#
#   '-ldconfig' expands into 'PATH="$PATH:/sbin" ldconfig -n /usr/local/bin'
#
# Somehow, this doen't work.
#
install-exec-hook:
	-ldconfig

uninstall-hook:
	-ldconfig