-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathMakefile.am
52 lines (41 loc) · 1.39 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
SUBDIRS = libinfinity libinftext
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = \
libinfinity-$(LIBINFINITY_API_VERSION).pc \
libinftext-$(LIBINFINITY_API_VERSION).pc
if WITH_INFGTK
SUBDIRS += libinfgtk
pkgconfig_DATA += libinfgtk-$(LIBINFINITY_API_VERSION).pc
endif
if WITH_INFTEXTGTK
SUBDIRS += libinftextgtk
pkgconfig_DATA += libinftextgtk-$(LIBINFINITY_API_VERSION).pc
endif
if WITH_INFINOTED
SUBDIRS += infinoted
pkgconfig_DATA += libinfinoted-plugin-manager-$(LIBINFINITY_API_VERSION).pc
endif
SUBDIRS += pixmaps test docs po
EXTRA_DIST = README.md
DISTCHECK_CONFIGURE_FLAGS=--enable-gtk-doc
MAINTAINERCLEANFILES = \
ChangeLog
distclean-local:
if test "$(srcdir)" = "."; then :; else \
rm -f ChangeLog; \
fi
ChangeLog:
$(AM_V_GEN) if test -d "$(srcdir)/.git"; then \
(GIT_DIR=$(top_srcdir)/.git ./missing --run git log \
4021c6e493112f901fb5bfb5daf4d3546272ac69..HEAD --stat=78) \
| fmt --split-only --width=78 > [email protected] \
&& cat [email protected] ChangeLog.manual > $@ && $(RM) [email protected] \
|| ($(RM) [email protected]; \
echo Failed to generate ChangeLog, your ChangeLog may be outdated >&2; \
(test -f $@ || echo git-log is required to generate this file >> $@)); \
else \
test -f $@ || \
(echo A git checkout and git-log is required to generate ChangeLog >&2 && \
echo A git checkout and git-log is required to generate this file >> $@); \
fi
.PHONY: ChangeLog