2001-07-12 Sven Neumann <sven@gimp.org> * app/regexrepl.c * app/regexrepl.h: removed here ... * plug-ins/script-fu/regexrepl.c * plug-ins/script-fu/regexrepl.h: ... and here ... * regexrepl/Makefile.am * regexrepl/regex.c * regexrepl/regex.h: ... and added here again. * Makefile.am * configure.in * app/Makefile.am * app/pdb/plug_in_cmds.c * app/pdb/procedural_db_cmds.c * plug-ins/script-fu/Makefile.am * plug-ins/script-fu/interp_regex.c * tools/pdbgen/app.pl * tools/pdbgen/pdb/plug_in.pdb * tools/pdbgen/pdb/procedural_db.pdb: changed accordingly.
67 lines
1.5 KiB
Makefile
67 lines
1.5 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
SUBDIRS = scripts
|
|
|
|
libexecdir = $(gimpplugindir)/plug-ins
|
|
|
|
libexec_PROGRAMS = script-fu
|
|
|
|
script_fu_SOURCES = @STRIP_BEGIN@ \
|
|
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-constants.c \
|
|
script-fu-constants.h \
|
|
script-fu-intl.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 \
|
|
@STRIP_END@
|
|
|
|
AM_CPPFLAGS = -DLOCALEDIR=\""$(localedir)"\"
|
|
|
|
INCLUDES = @STRIP_BEGIN@ \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/intl \
|
|
$(GTK_CFLAGS) \
|
|
-I$(includedir) \
|
|
@STRIP_END@
|
|
|
|
if HAVE_GLIBC_REGEX
|
|
REGEXREPL =
|
|
else
|
|
REGEXREPL = $(top_builddir)/regexrepl/libregex.a
|
|
endif
|
|
|
|
LDADD = @STRIP_BEGIN@ \
|
|
$(top_builddir)/plug-ins/dbbrowser/dbbrowser_utils.o \
|
|
$(top_builddir)/libgimp/libgimpui-$(LT_RELEASE).la \
|
|
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
|
|
$(top_builddir)/libgimp/libgimp-$(LT_RELEASE).la \
|
|
$(top_builddir)/libgimpcolor/libgimpcolor-$(LT_RELEASE).la \
|
|
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
|
$(GTK_LIBS) \
|
|
$(INTLLIBS) \
|
|
$(REGEXREPL) \
|
|
@STRIP_END@
|
|
|
|
.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
|