* libgimp/gimp.c
* app/datafiles.c
* app/docindex.c
* app/gimprc.c
* app/gradient.c
* app/palette.c: use g_get_home_dir () instead of getenv ("HOME")
* app/fileops.c: #warning is a gccism
* app/invert.[ch]: minor cleanup
* app/menus.c: more cleanups
* app/blob.c: even more cleanups
* libgimp/parasite.c: YACU
* ltconfig
* ltmain.sh: CVS libtool 1.2e
* modules/Makefile.am: use -module and -avoid-version flags
* lic/Makefile.am
* mapcolor/Makefile.am
* xbm/Makefile.am: don't link with libjpeg here
-Yosh
21 lines
624 B
Makefile
21 lines
624 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
moduledir = $(gimpplugindir)/modules
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/intl \
|
|
$(GTK_CFLAGS) \
|
|
-I$(includedir)
|
|
|
|
module_LTLIBRARIES = \
|
|
libcolorsel_gtk.la \
|
|
libcolorsel_triangle.la
|
|
|
|
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@
|