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

« back to all changes in this revision

Viewing changes to plug-ins/help/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:
1
1
## Process this file with automake to produce Makefile.in
2
2
 
 
3
libgimphelp = libgimphelp.a
3
4
libgimp = $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la
 
5
libgimpcolor = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la
4
6
libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la
 
7
libgimpmath = $(top_builddir)/libgimpmath/libgimpmath-$(GIMP_API_VERSION).la
5
8
 
6
9
if OS_WIN32
7
10
mwindows = -mwindows
11
14
 
12
15
AM_LDFLAGS = $(mwindows)
13
16
 
 
17
noinst_LIBRARIES = libgimphelp.a
 
18
 
 
19
libgimphelp_a_SOURCES = \
 
20
        gimphelptypes.h         \
 
21
        gimphelp.c              \
 
22
        gimphelp.h              \
 
23
        gimphelpdomain.c        \
 
24
        gimphelpdomain.h        \
 
25
        gimphelpitem.c          \
 
26
        gimphelpitem.h          \
 
27
        gimphelplocale.c        \
 
28
        gimphelplocale.h
 
29
 
14
30
libexecdir = $(gimpplugindir)/plug-ins
15
31
 
16
32
libexec_PROGRAMS = help
17
33
 
18
 
help_SOURCES = \
19
 
        domain.c        \
20
 
        domain.h        \
21
 
        locales.c       \
22
 
        locales.h       \
23
 
        help.c          \
24
 
        help.h
 
34
help_SOURCES = help.c
25
35
 
26
36
INCLUDES = \
27
37
        -I$(top_srcdir) \
29
39
        -I$(includedir)
30
40
 
31
41
LDADD = \
 
42
        $(libgimphelp)  \
32
43
        $(libgimp)      \
 
44
        $(libgimpcolor) \
33
45
        $(libgimpbase)  \
 
46
        $(libgimpmath)  \
34
47
        $(GLIB_LIBS)    \
35
48
        $(RT_LIBS)      \
36
49
        $(INTLLIBS)
38
51
 
39
52
noinst_PROGRAMS = gimp-help-lookup
40
53
 
41
 
gimp_help_lookup_SOURCES = \
42
 
        domain.c        \
43
 
        domain.h        \
44
 
        locales.c       \
45
 
        locales.h       \
46
 
        help.h          \
47
 
        gimp-help-lookup.c
 
54
gimp_help_lookup_SOURCES = gimp-help-lookup.c
48
55
 
49
 
gimp_help_lookup_LDADD = $(GLIB_LIBS)
 
56
gimp_help_lookup_LDADD = \
 
57
        $(libgimphelp)  \
 
58
        $(libgimpbase)  \
 
59
        $(GLIB_LIBS)