File: Makefile.am

package info (click to toggle)
gcr 3.4.1-3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 13,616 kB
  • sloc: ansic: 67,839; sh: 11,548; makefile: 988; xml: 227; python: 143
file content (52 lines) | stat: -rw-r--r-- 1,093 bytes parent folder | download
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
include $(top_srcdir)/Makefile.decl

SUBDIRS = \
	. \
	build \
	egg \
	gck \
	gcr \
	schema \
	testing \
	po \
	docs

ACLOCAL_AMFLAGS = -I build/m4 ${ACLOCAL_FLAGS}

EXTRA_DIST = \
	intltool-extract.in \
	intltool-merge.in \
	intltool-update.in \
	HACKING

DISTCHECK_CONFIGURE_FLAGS = \
	--enable-gtk-doc \
	--enable-strict \
	--disable-coverage \
	--disable-update-mime \
	--disable-update-icon-cache \
	--with-pkcs11-modules=$(abs_srcdir)/$(top_distdir)/_inst/lib/

DISTCLEANFILES = \
	intltool-extract \
	intltool-merge \
	intltool-update

dist-hook:
	@if test -d "$(srcdir)/.git"; \
	then \
		echo Creating ChangeLog && \
		( cd "$(top_srcdir)" && \
		  echo '# Generate automatically. Do not edit.'; echo; \
		  $(top_srcdir)/missing --run git log --stat --date=short ) > ChangeLog.tmp \
		&& mv -f ChangeLog.tmp $(top_distdir)/ChangeLog \
		|| ( rm -f ChangeLog.tmp ; \
		     echo Failed to generate ChangeLog >&2 ); \
	else \
		echo A git clone is required to generate a ChangeLog >&2; \
	fi

check-memory:
	make -C egg check-memory
	make -C gck check-memory
	make -C gcr check-memory