2003-01-01 Hans Breuer <hans@breuer.org> * libgimpbase/gimpdatafiles.c : when checking for 'excecutable' make sure it is a regular file too (on win32 even directories carry the IXUSR flag) * app/app_procs.h : there is still no #warning with msvc, special case to make it build with non GCC * makefile.msc */makefile.msc */*/makefile.msc : updated * app/gui/user-install-dialog.c : get prototype for mkdir * libgimpwidgets/libgimp-glue.c : make it compile without LT_RELEASE being defined * modules/module.def : removed modules/Makefile.am : no export file needed when functions get exported by G_MODULE_EXPORT
49 lines
1.8 KiB
Makefile
49 lines
1.8 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
if OS_WIN32
|
|
no_undefined = -no-undefined
|
|
conditional_libgimpbase_la = ../libgimpbase/libgimpbase-1.3.la
|
|
conditional_libgimpcolor_la = ../libgimpcolor/libgimpcolor-1.3.la
|
|
conditional_libgimpwidgets_la = ../libgimpwidgets/libgimpwidgets-1.3.la
|
|
endif
|
|
|
|
libdir = $(gimpplugindir)/modules
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
$(GTK_CFLAGS) \
|
|
-I$(includedir)
|
|
|
|
EXTRA_DIST = \
|
|
makefile.msc \
|
|
colorsel_water.c
|
|
|
|
lib_LTLIBRARIES = \
|
|
libcolorsel_triangle.la \
|
|
libcolorsel_water.la \
|
|
\
|
|
libcdisplay_colorblind.la \
|
|
libcdisplay_gamma.la \
|
|
libcdisplay_highcontrast.la
|
|
|
|
EXTRA_LTLIBRARIES =
|
|
|
|
libcolorsel_triangle_la_SOURCES = colorsel_triangle.c
|
|
libcolorsel_triangle_la_LDFLAGS = -avoid-version -module $(no_undefined)
|
|
libcolorsel_triangle_la_LIBADD = $(conditional_libgimpcolor_la) $(conditional_libgimpwidgets_la) $(GTK_LIBS)
|
|
|
|
libcolorsel_water_la_SOURCES = colorsel_water.c
|
|
libcolorsel_water_la_LDFLAGS = -avoid-version -module $(no_undefined)
|
|
libcolorsel_water_la_LIBADD = $(conditional_libgimpcolor_la) $(conditional_libgimpwidgets_la) $(GTK_LIBS)
|
|
|
|
libcdisplay_colorblind_la_SOURCES = cdisplay_colorblind.c
|
|
libcdisplay_colorblind_la_LDFLAGS = -avoid-version -module $(no_undefined)
|
|
libcdisplay_colorblind_la_LIBADD = $(conditional_libgimpbase_la) $(conditional_libgimpwidgets_la) $(GTK_LIBS)
|
|
|
|
libcdisplay_gamma_la_SOURCES = cdisplay_gamma.c
|
|
libcdisplay_gamma_la_LDFLAGS = -avoid-version -module $(no_undefined)
|
|
libcdisplay_gamma_la_LIBADD = $(conditional_libgimpbase_la) $(conditional_libgimpwidgets_la) $(GTK_LIBS)
|
|
|
|
libcdisplay_highcontrast_la_SOURCES = cdisplay_highcontrast.c
|
|
libcdisplay_highcontrast_la_LDFLAGS = -avoid-version -module $(no_undefined)
|
|
libcdisplay_highcontrast_la_LIBADD = $(conditional_libgimpbase_la) $(conditional_libgimpwidgets_la) $(GTK_LIBS)
|