2004-07-10 Michael Natterer <mitch@gimp.org> Removed any remaining GUI dependency from the PDB wrappers: * app/core/gimp.[ch]: added vtable entries for the display and help stuff. * app/widgets/gimphelp.[ch]: renamed gimp_help() to gimp_help_show(). * app/gui/gui-vtable.c: implement the new display and help vtable entries. * tools/pdbgen/pdb.pl * tools/pdbgen/pdb/display.pdb * tools/pdbgen/pdb/help.pdb: use the new functions of the Gimp object instead of using stuff from display/ and widgets/. * tools/pdbgen/app.pl: removed bad hacks which enabled including stuff from gui/, display/ and widgets/. * app/Makefile.am: link widgets-enums.o, display-enums.o and gimpdisplayoptions.o into the gimp-console binary because they are needed for the config system and don't depend on any GUI stuff. * app/pdb/Makefile.am: s/GTK_CFLAGS/GDK_PIXBUF_CFLAGS/ * app/pdb/display_cmds.c * app/pdb/help_cmds.c: regenerated.
62 lines
1.2 KiB
Makefile
62 lines
1.2 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
noinst_LIBRARIES = libapppdb.a
|
|
|
|
libapppdb_a_SOURCES = \
|
|
internal_procs.c \
|
|
internal_procs.h \
|
|
procedural_db.c \
|
|
procedural_db.h \
|
|
brush_select_cmds.c \
|
|
brushes_cmds.c \
|
|
channel_cmds.c \
|
|
color_cmds.c \
|
|
convert_cmds.c \
|
|
display_cmds.c \
|
|
drawable_cmds.c \
|
|
edit_cmds.c \
|
|
fileops_cmds.c \
|
|
floating_sel_cmds.c \
|
|
font_select_cmds.c \
|
|
fonts_cmds.c \
|
|
gimprc_cmds.c \
|
|
gradient_edit_cmds.c \
|
|
gradient_select_cmds.c \
|
|
gradients_cmds.c \
|
|
guides_cmds.c \
|
|
help_cmds.c \
|
|
image_cmds.c \
|
|
layer_cmds.c \
|
|
message_cmds.c \
|
|
misc_cmds.c \
|
|
paint_tools_cmds.c \
|
|
palette_cmds.c \
|
|
palette_select_cmds.c \
|
|
palettes_cmds.c \
|
|
parasite_cmds.c \
|
|
paths_cmds.c \
|
|
pattern_select_cmds.c \
|
|
patterns_cmds.c \
|
|
pdb_glue.h \
|
|
pdb-types.h \
|
|
plug_in_cmds.c \
|
|
procedural_db_cmds.c \
|
|
selection_cmds.c \
|
|
selection_tools_cmds.c \
|
|
text_tool_cmds.c \
|
|
transform_tools_cmds.c \
|
|
undo_cmds.c \
|
|
unit_cmds.c
|
|
|
|
AM_CPPFLAGS = \
|
|
-DG_LOG_DOMAIN=\"Gimp-PDB\" \
|
|
@GIMP_THREAD_FLAGS@ \
|
|
@GIMP_MP_FLAGS@
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/app \
|
|
$(GDK_PIXBUF_CFLAGS) \
|
|
-I$(includedir)
|
|
|
|
EXTRA_DIST = makefile.msc
|