forked from martyr-deepin/python-vte
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile.am
66 lines (53 loc) · 1.26 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
ACLOCAL_AMFLAGS = ${ACLOCAL_FLAGS}
SUBDIRS = src termcaps po doc perf
if HAVE_GTK_2
SUBDIRS += python
endif
EXTRA_DIST = \
MAINTAINERS \
HACKING \
autogen.sh \
ChangeLog.pre-git
DISTCLEANFILES =
if BUILD_GNOME_PTY_HELPER
SUBDIRS += gnome-pty-helper
endif
if ENABLE_GLADE_CATALOGUE
SUBDIRS += glade
endif
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = vte$(VTE_PC_VERSION).pc
DISTCHECK_CONFIGURE_FLAGS = \
--enable-gtk-doc \
--disable-introspection \
--disable-silent-rules \
--with-gtk=3.0
MAINTAINERCLEANFILES = \
ChangeLog \
$(srcdir)/INSTALL \
$(srcdir)/aclocal.m4 \
$(srcdir)/autoscan.log \
$(srcdir)/compile \
$(srcdir)/config.guess \
$(srcdir)/config.h.in \
$(srcdir)/config.sub \
$(srcdir)/configure \
$(srcdir)/configure.scan \
$(srcdir)/depcomp \
$(srcdir)/install-sh \
$(srcdir)/ltmain.sh \
$(srcdir)/missing \
$(srcdir)/mkinstalldirs \
$(srcdir)/omf.make \
$(srcdir)/xmldocs.make \
$(srcdir)/gtk-doc.make \
$(srcdir)/po/Makefile.in.in \
`find "$(srcdir)" -type f -name Makefile.in -print`
# 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