2004-09-22 Sven Neumann <sven@gimp.org> * tools/pdbgen/Makefile.am * tools/pdbgen/pdb/context.pdb: new files that will hold context related PDB functions. * tools/pdbgen/groups.pl * app/pdb/Makefile.am * app/pdb/context_cmds.c * app/pdb/internal_procs.c * app/pdb/progress_cmds.c * libgimp/gimp_pdb.h * libgimp/gimpcontext_pdb.[ch]: (re)generated. * app/plug-in/Makefile.am * app/plug-in/plug-in-context.[ch]: new files that will hold code that implements a context stack in the plug-in's proc-frame. * app/plug-in/plug-in.[ch]: new function plug_in_get_proc_frame(). * app/plug-in/plug-in-message.c * app/plug-in/plug-in-progress.c: use the new function instead of duplicating it all over the place.
45 lines
859 B
Makefile
45 lines
859 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
AM_CPPFLAGS = \
|
|
-DG_LOG_DOMAIN=\"Gimp-Plug-In\" \
|
|
@GIMP_THREAD_FLAGS@ \
|
|
@GIMP_MP_FLAGS@
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/app \
|
|
$(GDK_PIXBUF_CFLAGS) \
|
|
-I$(includedir)
|
|
|
|
noinst_LIBRARIES = libappplug-in.a
|
|
|
|
libappplug_in_a_SOURCES = \
|
|
plug-in-types.h \
|
|
plug-in.c \
|
|
plug-in.h \
|
|
plug-ins.c \
|
|
plug-ins.h \
|
|
plug-in-context.c \
|
|
plug-in-context.h \
|
|
plug-in-debug.c \
|
|
plug-in-debug.h \
|
|
plug-in-def.c \
|
|
plug-in-def.h \
|
|
plug-in-message.c \
|
|
plug-in-message.h \
|
|
plug-in-params.c \
|
|
plug-in-params.h \
|
|
plug-in-proc-def.c \
|
|
plug-in-proc-def.h \
|
|
plug-in-proc-frame.c \
|
|
plug-in-proc-frame.h \
|
|
plug-in-progress.c \
|
|
plug-in-progress.h \
|
|
plug-in-rc.c \
|
|
plug-in-rc.h \
|
|
plug-in-run.c \
|
|
plug-in-run.h \
|
|
plug-in-shm.c \
|
|
plug-in-shm.h
|
|
|
|
EXTRA_DIST = makefile.msc
|