summaryrefslogtreecommitdiff
path: root/Makefile.am
blob: ce3d55439ded5c33bdc63c69e75cca52bd2b90e0 (plain)
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
NULL =

SUBDIRS = data po man mate-volume-control

DISTCHECK_CONFIGURE_FLAGS =			\
	--enable-more-warnings			\
	--enable-compile-warnings=maximum	\
	--enable-deprecated

DIST_SUBDIRS =					\
	data					\
	po 					\
	man					\
	mate-volume-control			\
	$(NULL)

EXTRA_DIST =					\
	.version				\
	autogen.sh				\
	configure				\
	ChangeLog				\
	COPYING					\
	COPYING-DOCS				\
	build-aux/git-version-gen 		\
	$(INTLTOOL_BUILT:=.in)			\
	$(NULL)

DISTCLEANFILES =				\
	po/.intltool-merge-cache		\
	$(NULL)

ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}

# see build-aux/git-version-get for details
BUILT_SOURCES = $(top_srcdir)/.version
$(top_srcdir)/.version:
	echo $(VERSION) > $@-t && mv $@-t $@

# Build ChangeLog from GIT  history
ChangeLog:
	$(AM_V_GEN) if test -d $(top_srcdir)/.git; then \
		GIT_DIR="$(top_srcdir)/.git" git log --stat > $@; \
	fi

dist: ChangeLog

.PHONY: ChangeLog

-include $(top_srcdir)/git.mk