-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
44 lines (39 loc) · 803 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
39
40
41
42
43
44
ACLOCAL_AMFLAGS=-I m4
SUBDIRS = \
data \
po \
src \
vapi \
$(NULL)
EXTRA_DIST = AUTHORS \
intltool-extract.in \
intltool-update.in \
intltool-merge.in
DISTCLEANFILES = \
intltool-extract \
intltool-update \
intltool-merge \
po/.intltool-merge-cache
AUTHORS:
$(AM_V_GEN)if test -d "$(srcdir)/.git"; \
then \
echo Creating $@ && \
( cd "$(top_srcdir)" && \
echo '# Generated by Makefile. Do not edit.'; echo; \
git log --no-merges --pretty=format:"%an" $(SUBDIRS) \
| sort | uniq ) > [email protected] \
&& mv -f [email protected] $@ \
|| ( rm -f [email protected] ; \
echo Failed to generate $@ >&2 ); \
else touch $@; fi
GITIGNOREFILES = \
**/*.swp \
*.o \
aclocal.m4 \
build-aux \
config \
config.h.in \
gtk-doc.m4 \
gtk-doc.make \
INSTALL \
$(NULL)