2002-10-30 Sven Neumann <sven@gimp.org> * libgimpwidgets/gimpcolorselect.c: use a mnemonic that doesn't collide with the rest of the dialog. * modules/Makefile.am * modules/colorsel_gtk.c: removed the GTK color selector module. * modules/cdisplay_gamma.c * modules/cdisplay_highcontrast.c * modules/colorsel_triangle.c * modules/colorsel_water.c: translate in the gimp14-libgimp domain.
39 lines
1 KiB
Makefile
39 lines
1 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
libdir = $(gimpplugindir)/modules
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
$(GTK_CFLAGS) \
|
|
-I$(includedir)
|
|
|
|
EXTRA_DIST = \
|
|
makefile.mingw \
|
|
makefile.mingw.in \
|
|
makefile.msc \
|
|
module.def \
|
|
colorsel_water.c
|
|
|
|
lib_LTLIBRARIES = \
|
|
libcolorsel_triangle.la \
|
|
libcdisplay_gamma.la \
|
|
libcdisplay_highcontrast.la \
|
|
libcolorsel_water.la
|
|
|
|
EXTRA_LTLIBRARIES =
|
|
|
|
libcolorsel_triangle_la_SOURCES = colorsel_triangle.c
|
|
libcolorsel_triangle_la_LDFLAGS = -avoid-version -module
|
|
libcolorsel_triangle_la_LIBADD = $(GTK_LIBS)
|
|
|
|
libcolorsel_water_la_SOURCES = colorsel_water.c
|
|
libcolorsel_water_la_LDFLAGS = -avoid-version -module
|
|
libcolorsel_water_la_LIBADD = $(GTK_LIBS)
|
|
|
|
libcdisplay_gamma_la_SOURCES = cdisplay_gamma.c
|
|
libcdisplay_gamma_la_LDFLAGS = -avoid-version -module
|
|
libcdisplay_gamma_la_LIBADD = $(GTK_LIBS)
|
|
|
|
libcdisplay_highcontrast_la_SOURCES = cdisplay_highcontrast.c
|
|
libcdisplay_highcontrast_la_LDFLAGS = -avoid-version -module
|
|
libcdisplay_highcontrast_la_LIBADD = $(GTK_LIBS)
|