gimp/plug-ins/Makefile.am
Eric L. Hernes f430950e74 (erich) lots of changes to gimptcl
1) better integration to automake/autoconf/configure...
   The rules are:
   * by default look at -ltcl and -ltk
   * you can specify --with-tcl and --with-tk to use
     different versions, e.g. you can use --with-tcl=tcl80
     and --with-tk=tk80 to use them.
   * if your system has a dl library, it uses it, otherwise
     not.  This may cause problems if you have a -ldl, but
     your tcl library doesn't need it :(  There'll probably
     be a --with-tcldl=no someday

2) make a few arrays bigger, particularily in the PDB interface.

3) type most of the numeric returns from the PDB, e.g.
   a proc that returns a layer now returns `layer-#' instead
   of just `#'.  This may cause problems for scripts that
   get an array and then iterate over it. (as in gimp-list-images
   or similar)

4) consolio is now based on Jeff Hobbs `tkcon', much better than
   the older one.  And the license is much less restrictive.

5) The switch to tkcon unveiled several errors with the internal
   packages, so I fixed most of them.  Now sub-interpreters
   can use the same PDB interface as the ``parent'' interp.
   I should be able to make something akin to the script-fu
   mechanism out of this... (someday)
1997-12-01 19:49:08 +00:00

161 lines
2.1 KiB
Makefile

## Process this file with automake to produce Makefile.in
SUBDIRS = \
megawidget \
libgck \
MapObject \
AlienMap \
Anamorphose \
CentralReflection \
Curtain \
Encript_Decript \
Julia \
Mandelbrot \
dbbrowser \
dgimp \
fuse \
gflare \
@GIMPTCL@ \
refract \
script-fu \
struc \
twist \
warp \
@TIFF@ \
@JPEG@ \
@PNG@ \
@MPEG@ \
@XD@ \
@XPM@ \
CML_explorer \
align_layers \
apply_lens \
autocrop \
animationplay \
autostretch_hsv \
blinds \
blur \
blur2 \
bmp \
bumpmap \
bz2 \
c_astretch \
CEL \
checkerboard \
compose \
convmatrix \
coordmap \
cubism \
decompose \
deinterlace \
depthmerge \
despeckle \
destripe \
diffraction \
displace \
edge \
emboss \
engrave \
exchange \
faxg3 \
figures \
film \
fits \
fp \
gauss_iir \
gauss_rle \
gbr \
gfli \
gicon \
gif \
gqbist \
gradmap \
grid \
gz \
header \
holes \
hot \
hrz \
ifscompose \
iwarp \
laplace \
lic \
magiceye \
mail \
max_rgb \
maze \
mblur \
mosaic \
nlfilt \
noisify \
normalize \
nova \
oilify \
pat \
pcx \
pix \
pixelize \
plasma \
pnm \
polar \
print \
ps \
psd \
randomize \
ripple \
rotate \
rotators \
scatter_hsv \
sgi \
sharpen \
shift \
sinus \
smooth_palette \
snoise \
snp \
sobel \
sparkle \
spread \
stereogram \
sunras \
tga \
threshold_alpha \
tile \
tileit \
tiler \
universal \
url \
video \
vinvert \
vpropagate \
waves \
whirlpinch \
xwd \
zealouscrop
scriptdata =
pluginlibdir = $(gimpplugindir)/plug-ins
EXTRA_DIST = build.in xcompose.txt
INCLUDES = \
$(X_CFLAGS) \
-I$(top_srcdir) \
-I$(includedir)
LIBGIMPUI = $(top_builddir)/libgimp/libgimpui.la
.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