* Upgraded to libtool 1.2b * Reversioned libgimp to use gtk-style without a funky soname * configure.in: craft GLIB_CFLAGS and GLIB_LIBS * Makefile.am (pretty much all of em): changed to use new library naming scheme. Only link libgimpui and libgtk et al to the plugins that actually need them. * app/gimage_cmds.c: corrected typo that resulted in corrupt PDB record * libgimp/gimp.h * libgimp/gimpwire.h * libgimp/gimpmenu.[ch]: clean up the callback code * Removed unecessary inclusion of gtk headers for plugins that don't use em * plug-ins/zealouscrop/zealouscrop.c: use gint8 instead of gboolean, save some mem * plugged some warnings in animationplay, flame, fp, gee, gfig * gimptool.in: changes for library reversioning, added --nogimpui option for not linking in libgimpui * configure.in: added finnish translation -Yosh
60 lines
1.2 KiB
Makefile
60 lines
1.2 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
SUBDIRS = scripts
|
|
|
|
scriptdata =
|
|
|
|
pluginlibdir = $(gimpplugindir)/plug-ins
|
|
|
|
pluginlib_PROGRAMS = script-fu
|
|
|
|
script_fu_SOURCES = \
|
|
interp_md5.c \
|
|
interp_md5.h \
|
|
interp_regex.c \
|
|
interp_slib.c \
|
|
interp_sliba.c \
|
|
interp_trace.c \
|
|
script-fu.c \
|
|
script-fu-console.c \
|
|
script-fu-console.h \
|
|
script-fu-scripts.c \
|
|
script-fu-scripts.h \
|
|
script-fu-server.c \
|
|
script-fu-server.h \
|
|
script-fu-enums.h \
|
|
siod.h \
|
|
siodp.h \
|
|
regex.h \
|
|
regex.c
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
$(GTK_CFLAGS) \
|
|
-I$(includedir)
|
|
|
|
LDADD = \
|
|
$(top_builddir)/plug-ins/dbbrowser/dbbrowser_utils.o \
|
|
$(top_builddir)/libgimp/libgimpui.la \
|
|
$(top_builddir)/libgimp/libgimp.la \
|
|
$(GTK_LIBS)
|
|
|
|
DEPS = \
|
|
$(top_builddir)/plug-ins/dbbrowser/dbbrowser_utils.o \
|
|
$(top_builddir)/libgimp/libgimpui.la \
|
|
$(top_builddir)/libgimp/libgimp.la
|
|
|
|
script_fu_DEPENDENCIES = $(DEPS)
|
|
|
|
.PHONY: files
|
|
|
|
files:
|
|
@files=`ls $(DISTFILES) 2> /dev/null`; for p in $$files; do \
|
|
echo $$p; \
|
|
done
|
|
@for subdir in $(SUBDIRS); do \
|
|
files=`cd $$subdir; $(MAKE) files | grep -v "make\[[1-9]\]"`; \
|
|
for file in $$files; do \
|
|
echo $$subdir/$$file; \
|
|
done; \
|
|
done
|