~ubuntu-branches/ubuntu/jaunty/gimp/jaunty-security

« back to all changes in this revision

Viewing changes to plug-ins/script-fu/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2007-05-02 16:33:03 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20070502163303-bvzhjzbpw8qglc4y
Tags: 2.3.16-1ubuntu1
* Resynchronized with Debian, remaining Ubuntu changes:
  - debian/rules: i18n magic.
* debian/control.in:
  - Maintainer: Ubuntu Core Developers <ubuntu-devel@lists.ubuntu.com>
* debian/patches/02_help-message.patch,
  debian/patches/03_gimp.desktop.in.in.patch,
  debian/patches/10_dont_show_wizard.patch: updated.
* debian/patches/04_composite-signedness.patch,
  debian/patches/05_add-letter-spacing.patch: dropped, used upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
libgimp = $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la
6
6
libgimpcolor = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la
7
7
libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la
8
 
libgimpprocbrowser = $(top_builddir)/plug-ins/dbbrowser/libgimpprocbrowser.la
 
8
libgimpconfig = $(top_builddir)/libgimpconfig/libgimpconfig-$(GIMP_API_VERSION).la
 
9
libgimpmath = $(top_builddir)/libgimpmath/libgimpmath-$(GIMP_API_VERSION).la
 
10
 
 
11
libtinyscheme=tinyscheme/libtinyscheme.a
 
12
libftx=ftx/libftx.a
 
13
libre=re/libre.a
9
14
 
10
15
if OS_WIN32
11
16
mwindows = -mwindows
12
17
WINSOCK_LIBS = -lws2_32
13
18
endif
14
19
 
 
20
AM_CFLAGS = \
 
21
        -DUSE_INTERFACE=1  \
 
22
        -DUSE_STRLWR=0     \
 
23
        -I$(top_srcdir)    \
 
24
        $(GTK_CFLAGS)      \
 
25
        -I$(includedir)
 
26
 
15
27
AM_LDFLAGS = $(mwindows)
16
28
 
17
 
SUBDIRS = siod scripts
 
29
SUBDIRS = tinyscheme ftx re scripts
 
30
 
18
31
 
19
32
libexecdir = $(gimpplugindir)/plug-ins
20
33
 
35
48
        script-fu-server.h              \
36
49
        script-fu-types.h               \
37
50
        script-fu-enums.h               \
38
 
        siod-wrapper.c                  \
39
 
        siod-wrapper.h
40
 
 
41
 
INCLUDES = \
42
 
        -I$(top_srcdir) \
43
 
        $(GTK_CFLAGS)   \
44
 
        -I$(includedir)
 
51
        scheme-wrapper.c                \
 
52
        scheme-wrapper.h
45
53
 
46
54
if HAVE_GLIBC_REGEX
47
55
REGEXREPL =
50
58
endif
51
59
 
52
60
LDADD = \
53
 
        $(libgimpprocbrowser)   \
54
61
        $(libgimpui)            \
55
62
        $(libgimpwidgets)       \
 
63
        $(libgimpconfig)        \
 
64
        $(libgimpmath)          \
56
65
        $(libgimp)              \
57
66
        $(libgimpcolor)         \
58
67
        $(libgimpbase)          \
59
 
        siod/libsiod.a          \
 
68
        $(libtinyscheme)        \
 
69
        $(libftx)               \
 
70
        $(libre)                \
60
71
        $(REGEXREPL)            \
61
72
        $(GTK_LIBS)             \
62
73
        $(SOCKET_LIBS)          \