~ubuntu-branches/ubuntu/karmic/gimp/karmic-security

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2008-10-06 13:30:41 UTC
  • mfrom: (1.1.15 upstream)
  • Revision ID: james.westby@ubuntu.com-20081006133041-axco233xt49jobn7
Tags: 2.6.0-1ubuntu1
* Sync on debian and new version (lp: #276839)
* debian/patches/02_help-message.patch,
  debian/patches/03_gimp.desktop.in.in.patch:
  - updated some strings for ubuntu
* debian/rules:
  - updated translation templates

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
 
11
11
libtinyscheme=tinyscheme/libtinyscheme.a
12
12
libftx=ftx/libftx.a
13
 
libre=re/libre.a
14
13
 
15
14
if OS_WIN32
16
15
mwindows = -mwindows
27
26
 
28
27
AM_LDFLAGS = $(mwindows)
29
28
 
30
 
SUBDIRS = tinyscheme ftx re scripts
 
29
SUBDIRS = tinyscheme ftx scripts
31
30
 
32
31
 
33
32
libexecdir = $(gimpplugindir)/plug-ins
35
34
libexec_PROGRAMS = script-fu
36
35
 
37
36
script_fu_SOURCES = \
 
37
        script-fu-types.h               \
 
38
        script-fu-enums.h               \
 
39
        \
38
40
        script-fu.c                     \
39
41
        script-fu-console.c             \
40
42
        script-fu-console.h             \
 
43
        script-fu-eval.c                \
 
44
        script-fu-eval.h                \
41
45
        script-fu-interface.c           \
42
46
        script-fu-interface.h           \
43
47
        script-fu-text-console.h        \
44
48
        script-fu-text-console.c        \
45
49
        script-fu-intl.h                \
 
50
        script-fu-regex.c               \
 
51
        script-fu-regex.h               \
 
52
        script-fu-script.c              \
 
53
        script-fu-script.h              \
46
54
        script-fu-scripts.c             \
47
55
        script-fu-scripts.h             \
48
56
        script-fu-server.c              \
49
57
        script-fu-server.h              \
50
 
        script-fu-types.h               \
51
 
        script-fu-enums.h               \
 
58
        script-fu-utils.c               \
 
59
        script-fu-utils.h               \
52
60
        scheme-wrapper.c                \
53
61
        scheme-wrapper.h
54
62
 
55
 
if HAVE_GLIBC_REGEX
56
 
REGEXREPL =
57
 
else
58
 
REGEXREPL = $(top_builddir)/regexrepl/libregex.a
59
 
endif
60
 
 
61
63
LDADD = \
62
64
        $(libgimpui)            \
63
65
        $(libgimpwidgets)       \
68
70
        $(libgimpbase)          \
69
71
        $(libtinyscheme)        \
70
72
        $(libftx)               \
71
 
        $(libre)                \
72
 
        $(REGEXREPL)            \
73
73
        $(GTK_LIBS)             \
74
74
        $(SOCKET_LIBS)          \
75
75
        $(WINSOCK_LIBS)         \