2001-11-15 Michael Natterer <mitch@gimp.org> * Makefile.am: removed antique Makefile targets, including the "files" hack (which was some automatic EXTRA_DIST voodoo), added missing stuff to EXTRA_DIST. * app/plug-in/Makefile.am * devel-docs/Makefile.am * docs/Makefile.am * plug-ins/Makefile.am * plug-ins/FractalExplorer/Makefile.am * plug-ins/FractalExplorer/fractalexplorer-examples/Makefile.am * plug-ins/Lighting/Makefile.am * plug-ins/MapObject/Makefile.am * plug-ins/bmp/Makefile.am * plug-ins/dbbrowser/Makefile.am * plug-ins/faxg3/Makefile.am * plug-ins/fits/Makefile.am * plug-ins/flame/Makefile.am * plug-ins/gap/Makefile.am * plug-ins/gdyntext/Makefile.am * plug-ins/gflare/Makefile.am * plug-ins/gflare/gflares/Makefile.am * plug-ins/gfli/Makefile.am * plug-ins/gimpressionist/Makefile.am * plug-ins/gimpressionist/Brushes/Makefile.am * plug-ins/gimpressionist/Paper/Makefile.am * plug-ins/gimpressionist/Presets/Makefile.am * plug-ins/ifscompose/Makefile.am * plug-ins/imagemap/Makefile.am * plug-ins/libgck/Makefile.am * plug-ins/libgck/gck/Makefile.am * plug-ins/maze/Makefile.am * plug-ins/mosaic/Makefile.am * plug-ins/pagecurl/Makefile.am * plug-ins/plugin-helper/Makefile.am * plug-ins/print/Makefile.am * plug-ins/rcm/Makefile.am * plug-ins/script-fu/Makefile.am * plug-ins/script-fu/scripts/Makefile.am * plug-ins/sel2path/Makefile.am * plug-ins/sgi/Makefile.am * plug-ins/webbrowser/Makefile.am * plug-ins/xjt/Makefile.am * tips/Makefile.am: removed "files" too, some minor cleanups.
25 lines
636 B
Makefile
25 lines
636 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
libexecdir = $(gimpplugindir)/plug-ins
|
|
|
|
libexec_PROGRAMS = plugin-helper
|
|
|
|
plugin_helper_SOURCES = \
|
|
plugin-helper.c
|
|
|
|
AM_CPPFLAGS = \
|
|
-DLOCALEDIR=\""$(localedir)"\"
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
$(GTK_CFLAGS) \
|
|
-I$(includedir)
|
|
|
|
LDADD = \
|
|
$(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)
|