forked from kornelski/libicns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
50 lines (43 loc) · 991 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
45
46
47
48
49
50
ACLOCAL_AMFLAGS = -I m4
SUBDIRS = src icnsutils
.PHONY: rpm
EXTRA_DIST = \
samples/test1.icns \
samples/test2.rsrc \
samples/test3.bin \
COPYING.LGPL-2 \
COPYING.LGPL-2.1 \
README.install \
DEVNOTES \
MANIFEST.sources
rpm: @[email protected]
fakeroot rpm --clean -bb @[email protected]
distclean-local:
-rm -f @[email protected]
MAINTAINERCLEANFILES = \
m4/lt~obsolete.m4 \
m4/ltoptions.m4 \
m4/ltversion.m4 \
m4/ltsugar.m4 \
m4/libtool.m4 \
INSTALL \
config.h.in \
config.h.in~ \
aclocal.m4 \
config.guess \
config.sub \
configure \
depcomp \
install-sh \
ltmain.sh \
missing \
Makefile.in
dist-hook:
if test ! -e $(distdir)/ChangeLog -o \( $$(wc -l < $(distdir)/ChangeLog) -eq 1 -a -w $(distdir)/ChangeLog \) ; then \
if test -d .git ; then \
LC_ALL=C git log --pretty --numstat --summary $(VERSION) | git2cl > $(distdir)/ChangeLog ; \
elif test -d .svn ; then \
svn2cl -o $(distdir)/ChangeLog ; \
fi \
fi