summaryrefslogtreecommitdiff
path: root/Makefile.am
blob: 4dab38e48bc09a559f9e00208ede29466865dd91 (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
SUBDIRS = lib bindings po data help src docs

if ENABLE_BROWSER_PLUGINS
SUBDIRS += browser-plugin
endif


EXTRA_DIST =			\
	license_change		\
	autogen.sh		\
	intltool-extract.in	\
	intltool-merge.in	\
	intltool-update.in	\
	AUTHORS NEWS		\
	totem.spec.in		\
	totem.spec		\
	omf.make		\
	xmldocs.make		\
	gnome-doc-utils.make

CLEANFILES = totem.spec

DISTCLEANFILES = intltool-extract intltool-merge intltool-update \
		 gnome-doc-utils.make

DIST_SUBDIRS = $(SUBDIRS) browser-plugin
DISTCHECK_CONFIGURE_FLAGS = --disable-scrollkeeper --enable-gtk-doc

# Build ChangeLog from GIT history
ChangeLog:
	@if test -f $(top_srcdir)/.git/HEAD; then \
		git log --stat --after="Mon Jul 20 23:47:57 2009" > $@; \
	fi

dist: ChangeLog

.PHONY: ChangeLog