2001-05-22 Michael Natterer <mitch@gimp.org> * libgimp/.cvsignore * libgimp/Makefile.am * libgimp/gimp.h * libgimp/gimpfeatures.h.in: removed gimpfeatures.h * libgimpbase/.cvsignore * libgimpbase/Makefile.am * libgimpbase/gimpbase.h * libgimpbase/gimpbasetypes.h * libgimpbase/gimpversion.h.in: and added it as gimpversion.h * configure.in: changed accordingly. * app/app_procs.c * app/main.c * app/gui/about-dialog.c * app/gui/splash.c * app/pdb/misc_cmds.c * tools/pdbgen/pdb/misc.pdb: fixed includes. * plug-ins/bmp/bmpread.c * plug-ins/bmp/bmpwrite.c * plug-ins/common/gif.c * plug-ins/common/gifload.c * plug-ins/common/jpeg.c * plug-ins/common/newsprint.c * plug-ins/common/ps.c * plug-ins/common/tiff.c * plug-ins/gdyntext/gdyntextcompat.h * plug-ins/gimpressionist/gimpressionist.c * plug-ins/perl/Gimp.xs * plug-ins/perl/Gimp/Lib.xs * plug-ins/pygimp/gimpmodule.c * tools/gimp-remote.c: removed all #ifdef GIMP_HAVE_BLAH conditionals as they are broken anyway since we changed all plug-ins with perl scripts shortly before 1.2. Also, refering to intermediate unstable releases is evil.
79 lines
1.7 KiB
Makefile
79 lines
1.7 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
libgimpbaseincludedir = $(includedir)/gimp-$(LT_RELEASE)/libgimpbase
|
|
|
|
AM_CPPFLAGS = \
|
|
-DGIMPDIR=\""$(gimpdir)"\" \
|
|
-DDATADIR=\""$(gimpdatadir)"\" \
|
|
-DSYSCONFDIR=\""$(gimpsysconfdir)"\" \
|
|
-DG_LOG_DOMAIN=\"LibGimpBase\" \
|
|
@GIMP_THREAD_FLAGS@
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/intl \
|
|
-I../intl \
|
|
$(GLIB_CFLAGS) \
|
|
-I$(includedir)
|
|
|
|
EXTRA_DIST = \
|
|
gimpversion.h.in \
|
|
makefile.mingw \
|
|
makefile.mingw.in \
|
|
makefile.msc \
|
|
gimpbase.def
|
|
|
|
lib_LTLIBRARIES = libgimpbase-1.3.la
|
|
|
|
# help `make' along by giving another name for the file, which it knows
|
|
# how to build
|
|
../libgimpbase/gimpversion.h: gimpversion.h
|
|
@:
|
|
|
|
libgimpbase_1_3_la_SOURCES = \
|
|
gimpbase.h \
|
|
gimpbasetypes.h \
|
|
gimpenv.c \
|
|
gimpenv.h \
|
|
gimplimits.h \
|
|
gimpsignal.c \
|
|
gimpsignal.h \
|
|
gimputils.c \
|
|
gimputils.h \
|
|
gimpparasite.c \
|
|
gimpparasite.h \
|
|
gimpparasiteio.c \
|
|
gimpparasiteio.h \
|
|
gimpprotocol.c \
|
|
gimpprotocol.h \
|
|
gimpunit.h \
|
|
gimpversion.h \
|
|
gimpwire.c \
|
|
gimpwire.h
|
|
|
|
libgimpbaseinclude_HEADERS = \
|
|
gimpbase.h \
|
|
gimpbasetypes.h \
|
|
gimpenv.h \
|
|
gimplimits.h \
|
|
gimpsignal.h \
|
|
gimputils.h \
|
|
gimpparasite.h \
|
|
gimpparasiteio.h \
|
|
gimpunit.h \
|
|
gimpversion.h
|
|
|
|
libgimpbase_1_3_la_LDFLAGS = \
|
|
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
|
|
|
|
libgimpbase_1_3_la_LIBADD = $(GLIB_LIBS)
|
|
|
|
.PHONY: files
|
|
|
|
files:
|
|
@files=`ls $(DISTFILES) 2> /dev/null`; for p in $$files; do \
|
|
echo $$p; \
|
|
done
|
|
|
|
makefile.mingw: $(top_builddir)/config.status $(top_srcdir)/libgimpcolor/makefile.mingw.in
|
|
cd $(top_builddir) && CONFIG_FILES=libgimpcolor/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|