forked from jositux/gimp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
87 lines (77 loc) · 1.48 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
## Process this file with automake to produce Makefile.in
SUBDIRS = \
m4macros \
tools \
regexrepl \
cursors \
themes \
po \
po-libgimp \
po-plug-ins \
po-script-fu \
data \
tips \
libgimpbase \
libgimpcolor \
libgimpmath \
libgimpmodule \
libgimpthumb \
libgimpwidgets \
libgimp \
app \
$(GIMP_MODULES) \
$(GIMP_PLUGINS) \
etc \
$(GIMP_DEVEL_DOCS) \
docs
bin_SCRIPTS = gimptool-$(LT_RELEASE) @GIMPINSTALL@
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = \
gimp-$(LT_RELEASE).pc \
gimpthumb-$(LT_RELEASE).pc \
gimpui-$(LT_RELEASE).pc
EXTRA_SCRIPTS = gimpinstall-$(LT_RELEASE)
EXTRA_DIST = \
AUTHORS \
COPYING \
ChangeLog \
ChangeLog.pre-1-0 \
ChangeLog.pre-1-2 \
HACKING \
INSTALL \
LICENSE \
MAINTAINERS \
NEWS \
PLUGIN_MAINTAINERS \
README \
README.i18n \
README.win32 \
TODO.xml \
config.h.win32 \
gimp.spec.in \
gimp.spec \
gimp-zip.in \
gimptool-win32.c.in \
intltool-extract.in \
intltool-merge.in \
intltool-update.in \
makefile.msc \
po-libgimp/update.sh \
po-plug-ins/update.sh \
po-script-fu/update.sh
DISTCLEANFILES = \
intltool-extract \
intltool-merge \
intltool-update
gimpinstall-@LT_RELEASE@:
$(LN_S) $(srcdir)/install-sh $(srcdir)/gimpinstall-$(LT_RELEASE)
install-exec-hook:
if DEFAULT_BINARY
cd $(DESTDIR)$(bindir) \
&& rm -f gimptool \
&& $(LN_S) gimptool-$(LT_RELEASE) gimptool
endif
uninstall-local:
if DEFAULT_BINARY
rm -f $(DESTDIR)$(bindir)/gimptool
endif