mirror of https://github.com/GNOME/gimp.git
52 lines
1.4 KiB
Makefile
52 lines
1.4 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
libexecdir = $(gimpplugindir)/modules
|
|
|
|
CPPFLAGS = @STRIP_BEGIN@ \
|
|
-DMODULE_COMPILATION \
|
|
@STRIP_END@
|
|
|
|
INCLUDES = @STRIP_BEGIN@ \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/intl \
|
|
$(GTK_CFLAGS) \
|
|
-I$(includedir) \
|
|
@STRIP_END@
|
|
|
|
EXTRA_DIST = \
|
|
makefile.mingw \
|
|
makefile.mingw.in \
|
|
makefile.msc \
|
|
module.def \
|
|
gimpmodregister.c \
|
|
gimpmodregister.h \
|
|
colorsel_water.c
|
|
|
|
libexec_LTLIBRARIES = @STRIP_BEGIN@ \
|
|
libcolorsel_triangle.la \
|
|
@STRIP_END@
|
|
## libcolorsel_gtk.la \
|
|
## libcolorsel_water.la \
|
|
|
|
EXTRA_LTLIBRARIES =
|
|
|
|
## libcolorsel_gtk_la_SOURCES = colorsel_gtk.c
|
|
## libcolorsel_gtk_la_LDFLAGS = -avoid-version -module
|
|
## libcolorsel_gtk_la_LIBADD = $(GTK_LIBS)
|
|
|
|
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)
|