Modified Files: ChangeLog app/Makefile.am app/channel.c app/channel.h app/channel_cmds.c app/channel_cmds.h app/drawable_cmds.c app/gimage_cmds.c app/gimpdrawable.c app/gimpdrawable.h app/gimpdrawableP.h app/gimpimage.c app/gimpimage.h app/gimpimageP.h app/internal_procs.c app/layer.c app/layer.h app/layer_cmds.c app/layer_cmds.h app/parasite_cmds.c app/perspective_tool.c app/plug_in.c app/procedural_db.c app/rotate_tool.c app/scale_tool.c app/shear_tool.c app/transform_core.c app/transform_core.h docs/parasites.txt libgimp/Makefile.am libgimp/gimp.c libgimp/gimp.h libgimp/gimpdrawable.c libgimp/gimpimage.c libgimp/gimpprotocol.c libgimp/gimpprotocol.h plug-ins/gif/gif.c plug-ins/script-fu/script-fu.c plug-ins/tiff/tiff.c Added Files: libgimp/gimpmatrix.c libgimp/gimpmatrix.h libgimp/parasite.c libgimp/parasite.h libgimp/parasiteF.h libgimp/parasiteP.h Removed Files: app/parasite.c app/parasite.h app/parasiteF.h app/parasiteP.h libgimp/gimpparasite.c libgimp/gimpparasite.h Tue Oct 13 19:24:03 1998 Jay Cox (jaycox@earthlink.net) * app/parasite.c * app/parasite.h * app/parasiteF.h * app/parasiteP.h : use a single name field instead of seperate creator/type fields. moved to libgimp/parasite* * libgimp/Makefile.am * libgimp/gimp.c * libgimp/gimp.h * libgimp/gimpdrawable.c * libgimp/gimpimage.c * libgimp/gimpprotocol.c * libgimp/gimpprotocol.h * app/Makefile.am * app/channel.c * app/channel.h * app/channel_cmds.c * app/channel_cmds.h * app/drawable_cmds.c * app/gimage_cmds.c * app/gimpdrawable.c * app/gimpdrawable.h * app/gimpdrawableP.h * app/gimpimage.c * app/gimpimage.h * app/gimpimageP.h * app/internal_procs.c * app/layer.c * app/layer.h * app/layer_cmds.c * app/layer_cmds.h * app/parasite_cmds.c * app/plug_in.c * app/procedural_db.c: Add tattoos to layers and drawables. Use new style parasites. * libgimp/gimpmatrix.c * libgimp/gimpmatrix.h: new files for matrix math. * app/perspective_tool.c * app/rotate_tool.c * app/scale_tool.c * app/shear_tool.c * app/transform_core.c * app/transform_core.h: use GimpMatrix instead of the old matrix code from transform_core. * ligimp/gimpparasite*: removed. now useing the same source for plug-ins and the core. * plug-ins/script-fu/script-fu.c * plug-ins/tiff/tiff.c * plug-ins/gif/gif.c: updated to use new style parasites.
85 lines
1.5 KiB
Makefile
85 lines
1.5 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
gimpincludedir = $(includedir)/libgimp
|
|
|
|
scriptdata =
|
|
|
|
EXTRA_DIST = gimpfeatures.h.in
|
|
|
|
lib_LTLIBRARIES = libgimp.la libgimpui.la
|
|
noinst_LIBRARIES = libgimpi.a
|
|
|
|
libgimpi_a_SOURCES = \
|
|
gimpmatrix.c \
|
|
gimpmatrix.h \
|
|
gimpprotocol.c \
|
|
gimpprotocol.h \
|
|
gimpwire.c \
|
|
gimpwire.h \
|
|
parasite.c \
|
|
parasite.h \
|
|
parasiteF.h \
|
|
parasiteP.h
|
|
|
|
## Evil hack to insure all deps are satisfied on first-run make
|
|
libgimpi_a_DEPENDENCIES = libgimp.la
|
|
|
|
libgimp_la_SOURCES = \
|
|
gimp.c \
|
|
gimpchannel.c \
|
|
gimpdisplay.c \
|
|
gimpdrawable.c \
|
|
gimpgradient.c \
|
|
gimpimage.c \
|
|
gimplayer.c \
|
|
gimpmatrix.c \
|
|
gimpmatrix.h \
|
|
gimppalette.c \
|
|
gimppixelrgn.c \
|
|
gimpprotocol.c \
|
|
gimpprotocol.h \
|
|
gimptile.c \
|
|
gimpwire.c \
|
|
gimpwire.h \
|
|
parasite.c \
|
|
parasite.h \
|
|
parasiteF.h \
|
|
parasiteP.h
|
|
|
|
libgimpui_la_SOURCES = \
|
|
gimpmenu.c \
|
|
gimppatternmenu.c
|
|
|
|
gimpinclude_HEADERS = \
|
|
gimp.h \
|
|
gimpenums.h \
|
|
gimpfeatures.h \
|
|
gimpmatrix.h \
|
|
gimpmenu.h \
|
|
gimpui.h \
|
|
gimpintl.h \
|
|
parasite.h \
|
|
parasiteF.h \
|
|
parasiteP.h
|
|
|
|
libgimp_la_LDFLAGS = \
|
|
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) -release $(LT_RELEASE) -lm
|
|
libgimpui_la_LDFLAGS = \
|
|
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) -release $(LT_RELEASE)
|
|
|
|
CPPFLAGS = \
|
|
-DGIMPDIR=\""$(gimpdir)"\"
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/intl \
|
|
-I../intl \
|
|
$(GTK_CFLAGS) \
|
|
-I$(includedir)
|
|
|
|
.PHONY: files
|
|
|
|
files:
|
|
@files=`ls $(DISTFILES) 2> /dev/null`; for p in $$files; do \
|
|
echo $$p; \
|
|
done
|