[go: up one dir, main page]

File: Makefile.am

package info (click to toggle)
libgrip 0.3.8-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,776 kB
  • ctags: 395
  • sloc: sh: 11,451; ansic: 1,392; makefile: 184; python: 21
file content (38 lines) | stat: -rw-r--r-- 1,444 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
SUBDIRS = src bindings examples/rectangle-mover doc

pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = libgrip.pc

CLEANFILES = libgrip.pc
DISTCLEANFILES = libgrip.pc grip*.tar.gz
EXTRA_DIST = libgrip.pc.in m4/introspection.m4 autogen.sh

ACLOCAL_AMFLAGS=-I m4

DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc --enable-introspection --enable-localinstall

dist-hook:
	@if test -d "$(top_srcdir)/.bzr";								\
		then											\
			echo Creating ChangeLog &&							\
				( cd "$(top_srcdir)" &&							\
				echo '# Generated by Makefile. Do not edit.'; echo;			\
				$(top_srcdir)/missing --run bzr log --gnu-changelog ) > ChangeLog.tmp	\
				&& mv -f ChangeLog.tmp $(top_distdir)/ChangeLog				\
				|| (rm -f ChangeLog.tmp;						\
					echo Failed to generate ChangeLog >&2 );			\
	else												\
		echo Failed to generate ChangeLog: not a branch >&2;					\
	fi
	@if test -d "$(top_srcdir)/.bzr";								\
		then											\
			echo Creating AUTHORS &&							\
				( cd "$(top_srcdir)" &&							\
				echo '# Generated by Makefile. Do not edit.'; echo; \
				$(top_srcdir)/missing --run  bzr log --long --levels=0 | grep -e "^\s*author:" -e "^\s*committer:" | cut -d ":" -f 2 | cut -d "<" -f 1 | sort -u) > AUTHORS.tmp \
				&& mv -f AUTHORS.tmp $(top_distdir)/AUTHORS				\
				|| (rm -f AUTHORS.tmp;							\
				echo Failed to generate AUTHORS >&2 );					\
	else												\
		echo Failed to generate AUTHORS: not a branch >&2;					\
	fi