-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile.am
39 lines (29 loc) · 871 Bytes
/
Makefile.am
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
NORMAL_SUBDIRS = lib bindings po data help src docs
SUBDIRS = $(NORMAL_SUBDIRS)
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 = $(NORMAL_SUBDIRS) browser-plugin
DISTCHECK_CONFIGURE_FLAGS = --disable-scrollkeeper --enable-gtk-doc --with-nautilusdir='$${libdir}/nautilus/extensions-2.0-distcheck' --enable-vala=yes
# 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