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

« back to all changes in this revision

Viewing changes to libgimpbase/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:
43
43
        -DPREFIX=\""$(prefix)"\"                \
44
44
        -DGIMPDIR=\""$(gimpdir)"\"              \
45
45
        -DDATADIR=\""$(gimpdatadir)"\"          \
46
 
        -DLOCALEDIR=\""$(localedir)"\"          \
 
46
        -DLOCALEDIR=\""$(gimplocaledir)"\"      \
47
47
        -DPLUGINDIR=\""$(gimpplugindir)"\"      \
48
48
        -DSYSCONFDIR=\""$(gimpsysconfdir)"\"    \
 
49
        -DGIMP_PACKAGE=\""@PACKAGE@"\"          \
 
50
        -DGIMP_DATA_VERSION=\"$(GIMP_DATA_VERSION)\"            \
 
51
        -DGIMP_SYSCONF_VERSION=\"$(GIMP_SYSCONF_VERSION)\"      \
 
52
        -DGIMP_PLUGIN_VERSION=\"$(GIMP_PLUGIN_VERSION)\"        \
49
53
        -DG_LOG_DOMAIN=\"LibGimpBase\"          \
50
 
        @GIMP_THREAD_FLAGS@
 
54
        @BINRELOC_CFLAGS@                       \
 
55
        @GTHREAD_CFLAGS@
 
56
 
 
57
AM_CCASFLAGS = \
 
58
        -I$(top_builddir)       \
 
59
        -I$(top_srcdir)
51
60
 
52
61
INCLUDES = \
53
62
        -I$(top_srcdir) \
72
81
        gimpbasetypes.h         \
73
82
        gimpbasetypes.c         \
74
83
        gimplimits.h            \
 
84
        gimpparam.h             \
75
85
        gimpversion.h           \
76
86
        \
77
87
        gimpbase-private.c      \
78
88
        gimpbase-private.h      \
79
89
        gimpchecks.c            \
80
90
        gimpchecks.h            \
 
91
        gimpcpuaccel.c          \
 
92
        gimpcpuaccel.h          \
81
93
        gimpdatafiles.c         \
82
94
        gimpdatafiles.h         \
83
95
        gimpenv.c               \
90
102
        gimpparasiteio.h        \
91
103
        gimpprotocol.c          \
92
104
        gimpprotocol.h          \
 
105
        gimprectangle.c         \
 
106
        gimprectangle.h         \
 
107
        gimpreloc.c             \
 
108
        gimpreloc.h             \
93
109
        gimpsignal.c            \
94
110
        gimpsignal.h            \
95
111
        gimpunit.c              \
110
126
        gimpbase.h              \
111
127
        gimpbaseenums.h         \
112
128
        gimpbasetypes.h         \
 
129
        gimpcpuaccel.h          \
113
130
        gimplimits.h            \
 
131
        gimpparam.h             \
114
132
        gimpversion.h           \
115
133
        \
116
134
        gimpchecks.h            \
119
137
        gimpmemsize.h           \
120
138
        gimpparasite.h          \
121
139
        gimpparasiteio.h        \
 
140
        gimprectangle.h         \
122
141
        gimpsignal.h            \
123
142
        gimpunit.h              \
124
143
        gimputils.h
138
157
 
139
158
uninstall-local: uninstall-ms-lib uninstall-libtool-import-lib
140
159
 
 
160
#
 
161
# test programs, not to be built by default and never installed
 
162
#
 
163
 
 
164
TESTS = test-cpu-accel
 
165
 
 
166
test_cpu_accel_SOURCES = test-cpu-accel.c
 
167
 
 
168
test_cpu_accel_DEPENDENCIES = \
 
169
        $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la
 
170
 
 
171
test_cpu_accel_LDADD = \
 
172
        $(GLIB_LIBS)    \
 
173
        $(test_cpu_accel_DEPENDENCIES)
 
174
 
 
175
 
 
176
EXTRA_PROGRAMS = test-cpu-accel
 
177
 
141
178
 
142
179
#
143
180
# rules to generate built sources
144
181
#
145
182
 
146
183
gen_sources = xgen-bec
147
 
CLEANFILES = $(gen_sources)
 
184
CLEANFILES = $(EXTRA_PROGRAMS) $(gen_sources)
148
185
 
149
186
$(srcdir)/gimpbaseenums.c: $(srcdir)/gimpbaseenums.h $(GIMP_MKENUMS)
150
187
        $(GIMP_MKENUMS) \