2008-08-11 Michael Natterer <mitch@gimp.org> * plug-ins/bmp/* * plug-ins/faxg3/* * plug-ins/fits/* * plug-ins/fli/* * plug-ins/ico/* * plug-ins/jpeg/* * plug-ins/psd/* * plug-ins/sgi/* * plug-ins/uri/* * plug-ins/xjt/*: removed these... * plug-ins/file-bmp/* * plug-ins/file-faxg3/* * plug-ins/file-fits/* * plug-ins/file-fli/* * plug-ins/file-ico/* * plug-ins/file-jpeg/* * plug-ins/file-psd/* * plug-ins/file-sgi/* * plug-ins/file-uri/* * plug-ins/file-xjt/*: and moved them here. Changed executable names to "file-foo". * plug-ins/Makefile.am: changed accordingly. * plug-ins/common/*: rename all file plug-ins to file-foo.c. Get rid of the names "poppler" and "postscript" and call them "file-pdf" and "file-ps" because the conflict with standard autofoo targets is gone. * plug-ins/common/plugin-defs.pl: changed accordingly. * plug-ins/common/mkgen.pl: make sure cflags variables are named "PLUG_IN_NAME_CFLAGS" and not "PLUG-IN-NAME_CFLAGS" * plug-ins/common/Makefile.am: regenerated. * configure.in: change folders and variable names to match above changes. svn path=/trunk/; revision=26494
82 lines
1 KiB
Makefile
82 lines
1 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
EXTRA_DIST = \
|
|
makefile.msc
|
|
|
|
|
|
if BUILD_HELP_BROWSER
|
|
help_browser = help-browser
|
|
endif
|
|
|
|
if BUILD_JPEG
|
|
file_jpeg = file-jpeg
|
|
endif
|
|
|
|
if BUILD_PRINT
|
|
print = print
|
|
endif
|
|
|
|
if BUILD_PYTHON
|
|
pygimp = pygimp
|
|
endif
|
|
|
|
if BUILD_SCRIPT_FU
|
|
script_fu = script-fu
|
|
endif
|
|
|
|
if HAVE_MAC_TWAIN
|
|
twain = twain
|
|
endif
|
|
|
|
if HAVE_PNG
|
|
file_ico = file-ico
|
|
endif
|
|
|
|
if OS_WIN32
|
|
twain = twain
|
|
win_snap = win-snap
|
|
if HAVE_LIBCURL
|
|
file_uri = file-uri
|
|
endif
|
|
else
|
|
file_uri = file-uri
|
|
endif
|
|
|
|
if BUILD_XJT
|
|
file_xjt = file-xjt
|
|
endif
|
|
|
|
|
|
SUBDIRS = \
|
|
$(script_fu) \
|
|
$(pygimp) \
|
|
color-rotate \
|
|
file-bmp \
|
|
file-faxg3 \
|
|
file-fits \
|
|
file-fli \
|
|
$(file_ico) \
|
|
$(file_jpeg) \
|
|
file-psd \
|
|
file-sgi \
|
|
$(file_uri) \
|
|
$(file_xjt) \
|
|
flame \
|
|
fractal-explorer \
|
|
gfig \
|
|
gimpressionist \
|
|
gradient-flare \
|
|
help \
|
|
$(help_browser) \
|
|
ifs-compose \
|
|
imagemap \
|
|
lighting \
|
|
map-object \
|
|
maze \
|
|
metadata \
|
|
pagecurl \
|
|
$(print) \
|
|
selection-to-path \
|
|
$(twain) \
|
|
$(win_snap) \
|
|
common
|