2000-01-13 Michael Natterer <mitch@gimp.org> * app/gimpui.[ch] * app/preferences_dialog.c: removed & renamed some functions from gimpui.[ch] (see below). * libgimp/Makefile.am * libgimp/gimpwidgets.[ch]; new files. Functions moved from app/gimpui.[ch]. Added a constructor for the label + hscale + entry combination used in many plugins (now hscale + spinbutton). * libgimp/gimpui.h: include gimpwidgets.h * plug-ins/megawidget/megawidget.[ch]: removed all functions except the preview stuff (I'm not yet sure how to implement this in libgimp because the libgimp preview should be general enough to replace all the other plugin previews, too). * plug-ins/borderaverage/Makefile.am * plug-ins/borderaverage/borderaverage.c * plug-ins/common/plugin-defs.pl * plug-ins/common/Makefile.am * plug-ins/common/aa.c * plug-ins/common/align_layers.c * plug-ins/common/animationplay.c * plug-ins/common/apply_lens.c * plug-ins/common/blinds.c * plug-ins/common/bumpmap.c * plug-ins/common/checkerboard.c * plug-ins/common/colorify.c * plug-ins/common/convmatrix.c * plug-ins/common/cubism.c * plug-ins/common/curve_bend.c * plug-ins/common/deinterlace.c * plug-ins/common/despeckle.c * plug-ins/common/destripe.c * plug-ins/common/displace.c * plug-ins/common/edge.c * plug-ins/common/emboss.c * plug-ins/common/hot.c * plug-ins/common/nlfilt.c * plug-ins/common/pixelize.c * plug-ins/common/waves.c * plug-ins/sgi/sgi.c * plug-ins/sinus/sinus.c: ui updates like removing megawidget, using the dialog constructor, I18N fixes, indentation, ...
172 lines
3.1 KiB
Makefile
172 lines
3.1 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
gimpincludedir = $(includedir)/libgimp
|
|
|
|
AM_CPPFLAGS = \
|
|
-DGIMPDIR=\""$(gimpdir)"\" \
|
|
-DDATADIR=\""$(gimpdatadir)"\" \
|
|
@GIMP_THREAD_FLAGS@
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/intl \
|
|
-I../intl \
|
|
$(GTK_CFLAGS) \
|
|
-I$(includedir)
|
|
|
|
EXTRA_DIST = \
|
|
gimpfeatures.h.in \
|
|
makefile.msc \
|
|
makefile.cygwin \
|
|
gimp.def \
|
|
gimpui.def
|
|
|
|
lib_LTLIBRARIES = libgimp.la libgimpui.la
|
|
noinst_LIBRARIES = libgimpi.a
|
|
|
|
libgimpi_a_SOURCES = \
|
|
gimpenv.c \
|
|
gimpenv.h \
|
|
gimpchainbutton.c \
|
|
gimpchainbutton.h \
|
|
gimpcolorbutton.c \
|
|
gimpcolorspace.c \
|
|
gimpdialog.c \
|
|
gimpdialog.h \
|
|
gimpfileselection.c \
|
|
gimpfileselection.h \
|
|
gimphelpui.c \
|
|
gimphelpui.h \
|
|
gimpmatrix.c \
|
|
gimpmatrix.h \
|
|
gimppatheditor.c \
|
|
gimppatheditor.h \
|
|
gimpprotocol.c \
|
|
gimpprotocol.h \
|
|
gimpsizeentry.c \
|
|
gimpsizeentry.h \
|
|
gimpunitmenu.c \
|
|
gimpunitmenu.h \
|
|
gimpwidgets.c \
|
|
gimpwidgets.h \
|
|
gimpwire.c \
|
|
gimpwire.h \
|
|
gserialize.c \
|
|
gserialize.h \
|
|
parasite.c \
|
|
parasite.h \
|
|
parasiteF.h \
|
|
parasiteP.h \
|
|
parasiteio.c \
|
|
parasiteio.h
|
|
|
|
if STATICLIBS
|
|
## Evil hack to insure all deps are satisfied on first-run make
|
|
libgimpi_a_DEPENDENCIES = libgimp.la
|
|
endif
|
|
|
|
# help `make' along by giving another name for the file, which it knows
|
|
# how to build
|
|
../libgimp/gimpfeatures.h: gimpfeatures.h
|
|
@:
|
|
|
|
libgimp_la_SOURCES = \
|
|
gimp.c \
|
|
gimpchannel.c \
|
|
gimpcolorbutton.h \
|
|
gimpcolorspace.c \
|
|
gimpdisplay.c \
|
|
gimpdrawable.c \
|
|
gimpenv.c \
|
|
gimpgradient.c \
|
|
gimphelp.c \
|
|
gimpimage.c \
|
|
gimplayer.c \
|
|
gimpmatrix.c \
|
|
gimpmatrix.h \
|
|
gimppalette.c \
|
|
gimpparasite.c \
|
|
gimppixelrgn.c \
|
|
gimpprotocol.c \
|
|
gimpprotocol.h \
|
|
gimpselection.c \
|
|
gimptile.c \
|
|
gimpunit.c \
|
|
gimpunit.h \
|
|
gimpwire.c \
|
|
gimpwire.h \
|
|
gserialize.c \
|
|
gserialize.h \
|
|
parasite.c \
|
|
parasite.h \
|
|
parasiteF.h \
|
|
parasiteP.h \
|
|
parasiteio.c \
|
|
parasiteio.h \
|
|
stdplugins-intl.h
|
|
|
|
libgimpui_la_SOURCES = \
|
|
gimpmenu.c \
|
|
gimpbrushmenu.c \
|
|
gimpgradientmenu.c \
|
|
gimppatternmenu.c \
|
|
gimpchainbutton.c \
|
|
gimpcolorbutton.c \
|
|
gimpdialog.c \
|
|
gimpexport.c \
|
|
gimpfileselection.c \
|
|
gimphelpui.c \
|
|
gimppatheditor.c \
|
|
gimpsizeentry.c \
|
|
gimpunitmenu.c \
|
|
gimpwidgets.c
|
|
|
|
gimpinclude_HEADERS = \
|
|
color_display.h \
|
|
color_selector.h \
|
|
gimp.h \
|
|
gimpchainbutton.h \
|
|
gimpcolorbutton.h \
|
|
gimpcolorspace.h \
|
|
gimpcompat.h \
|
|
gimpdialog.h \
|
|
gimpenums.h \
|
|
gimpenv.h \
|
|
gimpexport.h \
|
|
gimpfeatures.h \
|
|
gimpfileselection.h \
|
|
gimphelpui.h \
|
|
gimplimits.h \
|
|
gimpmath.h \
|
|
gimpmatrix.h \
|
|
gimpmenu.h \
|
|
gimpmodule.h \
|
|
gimppatheditor.h \
|
|
gimpsizeentry.h \
|
|
gimpui.h \
|
|
gimpunit.h \
|
|
gimpunitmenu.h \
|
|
gimpwidgets.h \
|
|
gimpintl.h \
|
|
gserialize.h \
|
|
parasite.h \
|
|
parasiteF.h \
|
|
parasiteP.h \
|
|
parasiteio.h
|
|
|
|
libgimp_la_LDFLAGS = \
|
|
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \
|
|
-release $(LT_RELEASE)
|
|
libgimp_la_LIBADD = $(GLIB_LIBS) -lm
|
|
|
|
libgimpui_la_LDFLAGS = \
|
|
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \
|
|
-release $(LT_RELEASE)
|
|
libgimpui_la_LIBADD = $(GTK_LIBS)
|
|
|
|
.PHONY: files
|
|
|
|
files:
|
|
@files=`ls $(DISTFILES) 2> /dev/null`; for p in $$files; do \
|
|
echo $$p; \
|
|
done
|