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

« back to all changes in this revision

Viewing changes to app/plug-in/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:
2
2
 
3
3
AM_CPPFLAGS = \
4
4
        -DG_LOG_DOMAIN=\"Gimp-Plug-In\" \
5
 
        @GIMP_THREAD_FLAGS@             \
6
 
        @GIMP_MP_FLAGS@
 
5
        @GTHREAD_CFLAGS@
7
6
 
8
7
INCLUDES = \
 
8
        -I$(top_builddir)       \
9
9
        -I$(top_srcdir)         \
 
10
        -I$(top_builddir)/app   \
10
11
        -I$(top_srcdir)/app     \
11
12
        $(GDK_PIXBUF_CFLAGS)    \
12
13
        -I$(includedir)
14
15
noinst_LIBRARIES = libappplug-in.a
15
16
 
16
17
libappplug_in_a_SOURCES = \
17
 
        plug-in-types.h         \
18
 
        plug-in.c               \
19
 
        plug-in.h               \
20
 
        plug-ins.c              \
21
 
        plug-ins.h              \
22
 
        plug-in-context.c       \
23
 
        plug-in-context.h       \
24
 
        plug-in-debug.c         \
25
 
        plug-in-debug.h         \
26
 
        plug-in-def.c           \
27
 
        plug-in-def.h           \
28
 
        plug-in-message.c       \
29
 
        plug-in-message.h       \
30
 
        plug-in-params.c        \
31
 
        plug-in-params.h        \
32
 
        plug-in-proc-def.c      \
33
 
        plug-in-proc-def.h      \
34
 
        plug-in-proc-frame.c    \
35
 
        plug-in-proc-frame.h    \
36
 
        plug-in-progress.c      \
37
 
        plug-in-progress.h      \
38
 
        plug-in-rc.c            \
39
 
        plug-in-rc.h            \
40
 
        plug-in-run.c           \
41
 
        plug-in-run.h           \
42
 
        plug-in-shm.c           \
43
 
        plug-in-shm.h
 
18
        plug-in-enums.c                         \
 
19
        plug-in-enums.h                         \
 
20
        plug-in-types.h                         \
 
21
        \
 
22
        gimpenvirontable.c                      \
 
23
        gimpenvirontable.h                      \
 
24
        gimpinterpreterdb.c                     \
 
25
        gimpinterpreterdb.h                     \
 
26
        gimpplugindebug.c                       \
 
27
        gimpplugindebug.h                       \
 
28
        gimpplugin.c                            \
 
29
        gimpplugin.h                            \
 
30
        gimpplugin-cleanup.c                    \
 
31
        gimpplugin-cleanup.h                    \
 
32
        gimpplugin-context.c                    \
 
33
        gimpplugin-context.h                    \
 
34
        gimpplugin-message.c                    \
 
35
        gimpplugin-message.h                    \
 
36
        gimpplugin-progress.c                   \
 
37
        gimpplugin-progress.h                   \
 
38
        gimpplugindef.c                         \
 
39
        gimpplugindef.h                         \
 
40
        gimppluginmanager.c                     \
 
41
        gimppluginmanager.h                     \
 
42
        gimppluginmanager-call.c                \
 
43
        gimppluginmanager-call.h                \
 
44
        gimppluginmanager-data.c                \
 
45
        gimppluginmanager-data.h                \
 
46
        gimppluginmanager-file.c                \
 
47
        gimppluginmanager-file.h                \
 
48
        gimppluginmanager-help-domain.c         \
 
49
        gimppluginmanager-help-domain.h         \
 
50
        gimppluginmanager-history.c             \
 
51
        gimppluginmanager-history.h             \
 
52
        gimppluginmanager-locale-domain.c       \
 
53
        gimppluginmanager-locale-domain.h       \
 
54
        gimppluginmanager-menu-branch.c         \
 
55
        gimppluginmanager-menu-branch.h         \
 
56
        gimppluginmanager-query.c               \
 
57
        gimppluginmanager-query.h               \
 
58
        gimppluginmanager-restore.c             \
 
59
        gimppluginmanager-restore.h             \
 
60
        gimppluginprocedure.c                   \
 
61
        gimppluginprocedure.h                   \
 
62
        gimppluginprocframe.c                   \
 
63
        gimppluginprocframe.h                   \
 
64
        gimppluginshm.c                         \
 
65
        gimppluginshm.h                         \
 
66
        gimptemporaryprocedure.c                \
 
67
        gimptemporaryprocedure.h                \
 
68
        \
 
69
        plug-in-params.c                        \
 
70
        plug-in-params.h                        \
 
71
        plug-in-rc.c                            \
 
72
        plug-in-rc.h                            \
 
73
        \
 
74
        plug-in-icc-profile.c                   \
 
75
        plug-in-icc-profile.h
44
76
 
45
77
EXTRA_DIST = makefile.msc
 
78
 
 
79
#
 
80
# rules to generate built sources
 
81
#
 
82
# setup autogeneration dependencies
 
83
gen_sources = xgen-bec
 
84
CLEANFILES = $(EXTRA_PROGRAMS) $(gen_sources)
 
85
 
 
86
$(srcdir)/plug-in-enums.c: $(srcdir)/plug-in-enums.h $(GIMP_MKENUMS)
 
87
        $(GIMP_MKENUMS) \
 
88
                --fhead "#include \"config.h\"\n#include <glib-object.h>\n#include \"libgimpbase/gimpbase.h\"\n#include \"plug-in-enums.h\"\n#include \"gimp-intl.h\"" \
 
89
                --fprod "\n/* enumerations from \"@filename@\" */" \
 
90
                --vhead "GType\n@enum_name@_get_type (void)\n{\n  static const G@Type@Value values[] =\n  {" \
 
91
                --vprod "    { @VALUENAME@, \"@VALUENAME@\", \"@valuenick@\" }," \
 
92
                --vtail "    { 0, NULL, NULL }\n  };\n" \
 
93
                --dhead "  static const Gimp@Type@Desc descs[] =\n  {" \
 
94
                --dprod "    { @VALUENAME@, @valuedesc@, @valuehelp@ }," \
 
95
                --dtail "    { 0, NULL, NULL }\n  };\n\n  static GType type = 0;\n\n  if (! type)\n    {\n      type = g_@type@_register_static (\"@EnumName@\", values);\n      gimp_@type@_set_value_descriptions (type, descs);\n    }\n\n  return type;\n}\n" \
 
96
                $(srcdir)/plug-in-enums.h > xgen-bec \
 
97
        && cp xgen-bec $(@F) \
 
98
        && rm -f xgen-bec