libgimp versioning stuff
-Yosh
This commit is contained in:
@ -1,3 +1,8 @@
|
||||
Fri Jun 19 12:34:29 PDT 1998 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* changes libgimp versioning to gtk-style. Bunch o' Makefile.am
|
||||
changes for that
|
||||
|
||||
Thu Jun 18 23:11:36 1998 Owen Taylor <otaylor@gtk.org>
|
||||
|
||||
* app/ink.c: Shift the range to smaller brushes.
|
||||
|
||||
@ -300,13 +300,14 @@ CPPFLAGS = \
|
||||
-DGIMPDIR=\""$(gimpdir)"\"
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
gimp_LDADD = \
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpi.a \
|
||||
$(X_LIBS)
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpi.a
|
||||
|
||||
43
configure.in
43
configure.in
@ -2,17 +2,23 @@ dnl Process this file with autoconf to produce a configure script.
|
||||
AC_INIT(gimprc.in)
|
||||
|
||||
dnl Initialize automake stuff
|
||||
dnl $Format: "GIMP_MAJOR_VERSION=$ReleaseMajorVersion$" $
|
||||
GIMP_MAJOR_VERSION=1
|
||||
dnl $Format: "GIMP_MINOR_VERSION=$ReleaseMinorVersion$" $
|
||||
GIMP_MINOR_VERSION=1
|
||||
dnl $Format: "GIMP_MICRO_VERSION=$ReleaseMicroVersion$" $
|
||||
GIMP_MICRO_VERSION=0
|
||||
|
||||
GIMP_INTERFACE_AGE=0
|
||||
GIMP_BINARY_AGE=0
|
||||
GIMP_VERSION=$GIMP_MAJOR_VERSION.$GIMP_MINOR_VERSION.$GIMP_MICRO_VERSION
|
||||
|
||||
dnl $Format: "AM_INIT_AUTOMAKE(gimp, $ReleaseVersion$)" $
|
||||
AM_INIT_AUTOMAKE(gimp, $GIMP_VERSION)
|
||||
dnl libtool versioning
|
||||
LT_RELEASE=$GIMP_MAJOR_VERSION.$GIMP_MINOR_VERSION
|
||||
LT_CURRENT=`expr $GIMP_MICRO_VERSION - $GIMP_INTERFACE_AGE`
|
||||
LT_REVISION=$GIMP_INTERFACE_AGE
|
||||
LT_AGE=`expr $GIMP_BINARY_AGE - $GIMP_INTERFACE_AGE`
|
||||
|
||||
VERSION=$GIMP_VERSION
|
||||
PACKAGE=gimp
|
||||
|
||||
AM_INIT_AUTOMAKE($PACKAGE, $VERSION, no-define)
|
||||
|
||||
dnl Specify a header configuration file
|
||||
AM_CONFIG_HEADER(config.h)
|
||||
@ -32,7 +38,6 @@ fi)
|
||||
|
||||
AC_ARG_ENABLE(ansi, [ --enable-ansi turn on strict ansi [default=no]],
|
||||
, enable_ansi=no)
|
||||
AC_ARG_WITH(threads, [ --with-threads=[posix] support threading ])
|
||||
|
||||
dnl Possibly change default gimpdir from .gimp
|
||||
gimpdir=.gimp-1.1
|
||||
@ -43,16 +48,6 @@ if eval "test x$enable_gimpdir != x"; then
|
||||
fi
|
||||
fi)
|
||||
|
||||
AC_DEFUN(AC_GIMP_CHECK,
|
||||
[
|
||||
AM_PATH_GTK(1.1.0,,
|
||||
AC_MSG_ERROR(Test for GTK failed. See the file 'INSTALL' for help.))
|
||||
X_LIBS=$GTK_LIBS
|
||||
X_CFLAGS=$GTK_CFLAGS
|
||||
AC_SUBST(X_LIBS)
|
||||
AC_SUBST(X_CFLAGS)
|
||||
])
|
||||
|
||||
if test -n "$DEBUGFLAG"; then
|
||||
CFLAGS="$DEBUGFLAG $CFLAGS"
|
||||
fi
|
||||
@ -64,7 +59,12 @@ AC_PROG_INSTALL
|
||||
AC_PROG_LN_S
|
||||
AC_PROG_MAKE_SET
|
||||
AC_PROG_CPP
|
||||
AC_GIMP_CHECK
|
||||
|
||||
dnl Check for our required libraries
|
||||
AM_PATH_GLIB(1.1.0,,
|
||||
AC_MSG_ERROR(Test for GLIB failed. See the file 'INSTALL' for help.))
|
||||
AM_PATH_GTK(1.1.0,,
|
||||
AC_MSG_ERROR(Test for GTK failed. See the file 'INSTALL' for help.))
|
||||
|
||||
if eval "test x$GCC = xyes"; then
|
||||
if echo "$CFLAGS" | grep "\-Wall" > /dev/null 2> /dev/null; then
|
||||
@ -93,6 +93,7 @@ gimp_save_LDFLAGS="$LDFLAGS"
|
||||
gimp_save_LIBS="$LIBS"
|
||||
|
||||
CPPFLAGS="$CPPFLAGS $GTK_CFLAGS"
|
||||
LDFLAGS="$LDFLAGS `echo $GLIB_LIBS | sed 's/\(.*\)\(-lglib.*\)/\1/'`"
|
||||
LDFLAGS="$LDFLAGS `echo $GTK_LIBS | sed 's/\(.*\)\(-lgtk.*\)/\1/'`"
|
||||
LIBS="$LIBS $GTK_LIBS"
|
||||
|
||||
@ -306,6 +307,7 @@ dnl check for difftime
|
||||
AC_CHECK_FUNC(difftime, , AC_DEFINE(NO_DIFFTIME))
|
||||
|
||||
dnl Threads
|
||||
AC_ARG_WITH(threads, [ --with-threads=[posix] support threading ])
|
||||
if test "x$with_threads" = "xposix" || test "x$with_threads" = "xyes"; then
|
||||
AC_CHECK_LIB(pthread, pthread_attr_init,
|
||||
AC_DEFINE(USE_PTHREADS)
|
||||
@ -404,6 +406,11 @@ AC_SUBST(GIMP_MINOR_VERSION)
|
||||
AC_SUBST(GIMP_MICRO_VERSION)
|
||||
AC_SUBST(GIMP_VERSION)
|
||||
|
||||
AC_SUBST(LT_RELEASE)
|
||||
AC_SUBST(LT_CURRENT)
|
||||
AC_SUBST(LT_REVISION)
|
||||
AC_SUBST(LT_AGE)
|
||||
|
||||
AC_SUBST(gimpdir)
|
||||
AC_SUBST(gimpdatadir)
|
||||
AC_SUBST(gimpplugindir)
|
||||
|
||||
@ -12,21 +12,21 @@ EXTRA_DIST = $(brushdata_DATA)
|
||||
|
||||
.PHONY: files
|
||||
|
||||
FILES =\
|
||||
10x10square.gbr \
|
||||
FILES = \
|
||||
10x10square.gbr \
|
||||
10x10squareBlur.gbr \
|
||||
11circle.gbr \
|
||||
11fcircle.gbr \
|
||||
13circle.gbr \
|
||||
13fcircle.gbr \
|
||||
15circle.gbr \
|
||||
15fcircle.gbr \
|
||||
17circle.gbr \
|
||||
17fcircle.gbr \
|
||||
19circle.gbr \
|
||||
19fcircle.gbr \
|
||||
1circle.gbr \
|
||||
20x20square.gbr \
|
||||
11circle.gb \
|
||||
11fcircle.gbr \
|
||||
13circle.gbr \
|
||||
13fcircle.gbr \
|
||||
15circle.gbr \
|
||||
15fcircle.gbr \
|
||||
17circle.gbr \
|
||||
17fcircle.gbr \
|
||||
19circle.gbr \
|
||||
19fcircle.gbr \
|
||||
1circle.gbr \
|
||||
20x20square.gbr \
|
||||
20x20squareBlur.gbr \
|
||||
3circle.gbr \
|
||||
3fcircle.gbr \
|
||||
|
||||
@ -12,82 +12,82 @@ EXTRA_DIST = $(gradientdata_DATA)
|
||||
|
||||
.PHONY: files
|
||||
|
||||
FILES =\
|
||||
Abstract_1 \
|
||||
Abstract_2 \
|
||||
Abstract_3 \
|
||||
Aneurism \
|
||||
Blinds \
|
||||
Blue_Green \
|
||||
Browns \
|
||||
Brushed_Aluminium \
|
||||
Burning_Paper \
|
||||
Burning_Transparency \
|
||||
CD \
|
||||
CD_Half \
|
||||
Caribbean_Blues \
|
||||
Coffee \
|
||||
Cold_Steel \
|
||||
Cold_Steel_2 \
|
||||
Crown_molding \
|
||||
Dark_1 \
|
||||
Deep_Sea \
|
||||
Default \
|
||||
Flare_Glow_Angular_1 \
|
||||
Flare_Glow_Radial_1 \
|
||||
Flare_Glow_Radial_2 \
|
||||
Flare_Glow_Radial_3 \
|
||||
Flare_Glow_Radial_4 \
|
||||
Flare_Radial_101 \
|
||||
Flare_Radial_102 \
|
||||
Flare_Radial_103 \
|
||||
Flare_Rays_Radial_1 \
|
||||
Flare_Rays_Radial_2 \
|
||||
Flare_Rays_Size_1 \
|
||||
Flare_Sizefac_101 \
|
||||
Four_bars \
|
||||
French_flag \
|
||||
French_flag_smooth \
|
||||
Full_saturation_spectrum_CCW \
|
||||
Full_saturation_spectrum_CW \
|
||||
German_flag \
|
||||
German_flag_smooth \
|
||||
Golden \
|
||||
Greens \
|
||||
Horizon_1 \
|
||||
Horizon_2 \
|
||||
Incandescent \
|
||||
Land_1 \
|
||||
Land_and_Sea \
|
||||
Metallic_Something \
|
||||
Mexican_flag \
|
||||
Mexican_flag_smooth \
|
||||
Nauseating_Headache \
|
||||
Neon_Cyan \
|
||||
Neon_Green \
|
||||
Neon_Yellow \
|
||||
Pastels \
|
||||
Pastel_Rainbow \
|
||||
Purples \
|
||||
Radial_Eyeball_Blue \
|
||||
Radial_Eyeball_Brown \
|
||||
Radial_Eyeball_Green \
|
||||
Radial_Glow_1 \
|
||||
Radial_Rainbow_Hoop \
|
||||
Romanian_flag \
|
||||
Romanian_flag_smooth \
|
||||
Rounded_edge \
|
||||
Shadows_1 \
|
||||
Shadows_2 \
|
||||
Shadows_3 \
|
||||
Skyline \
|
||||
Skyline_polluted \
|
||||
Square_Wood_Frame \
|
||||
Sunrise \
|
||||
Three_bars_sin \
|
||||
Tropical_Colors \
|
||||
Tube_Red \
|
||||
Wood_1 \
|
||||
Wood_2 \
|
||||
Yellow_Contrast \
|
||||
Yellow_Orange
|
||||
FILES = \
|
||||
Abstract_1 \
|
||||
Abstract_2 \
|
||||
Abstract_3 \
|
||||
Aneurism \
|
||||
Blinds \
|
||||
Blue_Green \
|
||||
Browns \
|
||||
Brushed_Aluminium \
|
||||
Burning_Paper \
|
||||
Burning_Transparency \
|
||||
CD \
|
||||
CD_Half \
|
||||
Caribbean_Blues \
|
||||
Coffee \
|
||||
Cold_Steel \
|
||||
Cold_Steel_2 \
|
||||
Crown_molding \
|
||||
Dark_1 \
|
||||
Deep_Sea \
|
||||
Default \
|
||||
Flare_Glow_Angular_1 \
|
||||
Flare_Glow_Radial_1 \
|
||||
Flare_Glow_Radial_2 \
|
||||
Flare_Glow_Radial_3 \
|
||||
Flare_Glow_Radial_4 \
|
||||
Flare_Radial_101 \
|
||||
Flare_Radial_102 \
|
||||
Flare_Radial_103 \
|
||||
Flare_Rays_Radial_1 \
|
||||
Flare_Rays_Radial_2 \
|
||||
Flare_Rays_Size_1 \
|
||||
Flare_Sizefac_101 \
|
||||
Four_bars \
|
||||
French_flag \
|
||||
French_flag_smooth \
|
||||
Full_saturation_spectrum_CCW \
|
||||
Full_saturation_spectrum_CW \
|
||||
German_flag \
|
||||
German_flag_smooth \
|
||||
Golden \
|
||||
Greens \
|
||||
Horizon_1 \
|
||||
Horizon_2 \
|
||||
Incandescent \
|
||||
Land_1 \
|
||||
Land_and_Sea \
|
||||
Metallic_Something \
|
||||
Mexican_flag \
|
||||
Mexican_flag_smooth \
|
||||
Nauseating_Headache \
|
||||
Neon_Cyan \
|
||||
Neon_Green \
|
||||
Neon_Yellow \
|
||||
Pastels \
|
||||
Pastel_Rainbow \
|
||||
Purples \
|
||||
Radial_Eyeball_Blue \
|
||||
Radial_Eyeball_Brown \
|
||||
Radial_Eyeball_Green \
|
||||
Radial_Glow_1 \
|
||||
Radial_Rainbow_Hoop \
|
||||
Romanian_flag \
|
||||
Romanian_flag_smooth \
|
||||
Rounded_edge \
|
||||
Shadows_1 \
|
||||
Shadows_2 \
|
||||
Shadows_3 \
|
||||
Skyline \
|
||||
Skyline_polluted \
|
||||
Square_Wood_Frame \
|
||||
Sunrise \
|
||||
Three_bars_sin \
|
||||
Tropical_Colors \
|
||||
Tube_Red \
|
||||
Wood_1 \
|
||||
Wood_2 \
|
||||
Yellow_Contrast \
|
||||
Yellow_Orange
|
||||
|
||||
@ -12,41 +12,40 @@ EXTRA_DIST = $(palettedata_DATA)
|
||||
|
||||
.PHONY: files
|
||||
|
||||
FILES =\
|
||||
Blues \
|
||||
Bears \
|
||||
Bgold \
|
||||
Borders \
|
||||
FILES = \
|
||||
Blues \
|
||||
Bears \
|
||||
Bgold \
|
||||
Borders \
|
||||
Browns_And_Yellows \
|
||||
Caramel \
|
||||
China \
|
||||
Coldfire \
|
||||
Cool_Colors \
|
||||
Cranes \
|
||||
Dark_pastels \
|
||||
Default \
|
||||
Ega \
|
||||
Firecode \
|
||||
Gold \
|
||||
Grayblue \
|
||||
Grays \
|
||||
GrayViolet \
|
||||
Greens \
|
||||
Hilite \
|
||||
Kahki \
|
||||
Lights \
|
||||
Muted \
|
||||
Named_Colors \
|
||||
News3 \
|
||||
Op2 \
|
||||
Paintjet \
|
||||
Pastels \
|
||||
Plasma \
|
||||
Reds \
|
||||
Caramel \
|
||||
China \
|
||||
Coldfire \
|
||||
Cool_Colors \
|
||||
Cranes \
|
||||
Dark_pastels \
|
||||
Default \
|
||||
Ega \
|
||||
Firecode \
|
||||
Gold \
|
||||
Grayblue \
|
||||
Grays \
|
||||
GrayViolet \
|
||||
Greens \
|
||||
Hilite \
|
||||
Kahki \
|
||||
Lights \
|
||||
Muted \
|
||||
Named_Colors \
|
||||
News3 \
|
||||
Op2 \
|
||||
Paintjet \
|
||||
Pastels \
|
||||
Plasma \
|
||||
Reds \
|
||||
Reds_And_Purples \
|
||||
Royal \
|
||||
Topographic \
|
||||
Volcano \
|
||||
Warm_Colors \
|
||||
Web
|
||||
|
||||
Royal \
|
||||
Topographic \
|
||||
Volcano \
|
||||
Warm_Colors \
|
||||
Web
|
||||
|
||||
@ -12,62 +12,60 @@ EXTRA_DIST = $(patterndata_DATA)
|
||||
|
||||
.PHONY: files
|
||||
|
||||
FILES =\
|
||||
3dgreen.pat \
|
||||
Craters.pat \
|
||||
Moonfoot.pat \
|
||||
amethyst.pat \
|
||||
bark.pat \
|
||||
blue.pat \
|
||||
bluegrid.pat \
|
||||
bluesquares.pat \
|
||||
blueweb.pat \
|
||||
brick.pat \
|
||||
burlap.pat \
|
||||
burlwood.pat \
|
||||
choc_swirl.pat \
|
||||
corkboard.pat \
|
||||
cracked.pat \
|
||||
crinklepaper.pat \
|
||||
electric.pat \
|
||||
fibers.pat \
|
||||
granite1.pat \
|
||||
ground1.pat \
|
||||
ice.pat \
|
||||
java.pat \
|
||||
leather.pat \
|
||||
leaves.pat \
|
||||
leopard.pat \
|
||||
lightning.pat \
|
||||
marble1.pat \
|
||||
marble2.pat \
|
||||
marble3.pat \
|
||||
nops.pat \
|
||||
paper.pat \
|
||||
parque1.pat \
|
||||
parque2.pat \
|
||||
parque3.pat \
|
||||
pastel.pat \
|
||||
pine.pat \
|
||||
pink_marble.pat \
|
||||
pool.pat \
|
||||
qube1.pat \
|
||||
rain.pat \
|
||||
recessed.pat \
|
||||
redcube.pat \
|
||||
rock.pat \
|
||||
sky.pat \
|
||||
slate.pat \
|
||||
sm_squares.pat \
|
||||
starfield.pat \
|
||||
stone33.pat \
|
||||
terra.pat \
|
||||
walnut.pat \
|
||||
warning.pat \
|
||||
wood1.pat \
|
||||
wood2.pat \
|
||||
wood3.pat \
|
||||
wood4.pat \
|
||||
wood5.pat
|
||||
|
||||
|
||||
FILES = \
|
||||
3dgreen.pat \
|
||||
Craters.pat \
|
||||
Moonfoot.pat \
|
||||
amethyst.pat \
|
||||
bark.pat \
|
||||
blue.pat \
|
||||
bluegrid.pat \
|
||||
bluesquares.pat \
|
||||
blueweb.pat \
|
||||
brick.pat \
|
||||
burlap.pat \
|
||||
burlwood.pat \
|
||||
choc_swirl.pat \
|
||||
corkboard.pat \
|
||||
cracked.pat \
|
||||
crinklepaper.pat \
|
||||
electric.pat \
|
||||
fibers.pat \
|
||||
granite1.pat \
|
||||
ground1.pat \
|
||||
ice.pat \
|
||||
java.pat \
|
||||
leather.pat \
|
||||
leaves.pat \
|
||||
leopard.pat \
|
||||
lightning.pat \
|
||||
marble1.pat \
|
||||
marble2.pat \
|
||||
marble3.pat \
|
||||
nops.pat \
|
||||
paper.pat \
|
||||
parque1.pat \
|
||||
parque2.pat \
|
||||
parque3.pat \
|
||||
pastel.pat \
|
||||
pine.pat \
|
||||
pink_marble.pat \
|
||||
pool.pat \
|
||||
qube1.pat \
|
||||
rain.pat \
|
||||
recessed.pat \
|
||||
redcube.pat \
|
||||
rock.pat \
|
||||
sky.pat \
|
||||
slate.pat \
|
||||
sm_squares.pat \
|
||||
starfield.pat \
|
||||
stone33.pat \
|
||||
terra.pat \
|
||||
walnut.pat \
|
||||
warning.pat \
|
||||
wood1.pat \
|
||||
wood2.pat \
|
||||
wood3.pat \
|
||||
wood4.pat \
|
||||
wood5.pat
|
||||
|
||||
@ -4,47 +4,57 @@ gimpincludedir = $(includedir)/libgimp
|
||||
|
||||
scriptdata =
|
||||
|
||||
lib_LTLIBRARIES = libgimp.la libgimpui.la
|
||||
lib_LTLIBRARIES = libgimp-1.1.la libgimpui-1.1.la
|
||||
noinst_LIBRARIES = libgimpi.a
|
||||
|
||||
libgimpi_a_SOURCES = gimpprotocol.c \
|
||||
gimpprotocol.h \
|
||||
gimpwire.c \
|
||||
gimpwire.h
|
||||
libgimpi_a_SOURCES = \
|
||||
gimpprotocol.c \
|
||||
gimpprotocol.h \
|
||||
gimpwire.c \
|
||||
gimpwire.h
|
||||
|
||||
libgimpi_a_DEPENDENCIES = libgimp.la
|
||||
## Evil hack to insure all deps are satisfied on first-run make
|
||||
libgimpi_a_DEPENDENCIES = libgimp-1.1.la
|
||||
|
||||
libgimp_la_SOURCES = gimp.c \
|
||||
gimpchannel.c \
|
||||
gimpdisplay.c \
|
||||
gimpdrawable.c \
|
||||
gimpgradient.c \
|
||||
gimpimage.c \
|
||||
gimplayer.c \
|
||||
gimppalette.c \
|
||||
gimppixelrgn.c \
|
||||
gimpprotocol.c \
|
||||
gimpprotocol.h \
|
||||
gimptile.c \
|
||||
gimpwire.c \
|
||||
gimpwire.h
|
||||
libgimp_1_1_la_SOURCES = \
|
||||
gimp.c \
|
||||
gimpchannel.c \
|
||||
gimpdisplay.c \
|
||||
gimpdrawable.c \
|
||||
gimpgradient.c \
|
||||
gimpimage.c \
|
||||
gimplayer.c \
|
||||
gimppalette.c \
|
||||
gimppixelrgn.c \
|
||||
gimpprotocol.c \
|
||||
gimpprotocol.h \
|
||||
gimptile.c \
|
||||
gimpwire.c \
|
||||
gimpwire.h
|
||||
|
||||
libgimpui_la_SOURCES = gimpmenu.c
|
||||
libgimpui_1_1_la_SOURCES = \
|
||||
gimpmenu.c
|
||||
|
||||
gimpinclude_HEADERS = gimp.h \
|
||||
gimpenums.h \
|
||||
gimpmenu.h \
|
||||
gimpui.h
|
||||
gimpinclude_HEADERS = \
|
||||
gimp.h \
|
||||
gimpenums.h \
|
||||
gimpmenu.h \
|
||||
gimpui.h
|
||||
|
||||
libgimp_la_LDFLAGS = -version-info 1:0:0
|
||||
libgimpui_la_LDFLAGS = -version-info 1:0:0
|
||||
libgimp_1_1_la_LDFLAGS = -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
|
||||
libgimpui_1_1_la_LDFLAGS = -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
|
||||
|
||||
CPPFLAGS = \
|
||||
-DGIMPDIR=\""$(gimpdir)"\"
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
-I$(top_srcdir) \
|
||||
$(GLIB_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
libgimpui_1_1_la_INCLUDES = \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
.PHONY: files
|
||||
|
||||
@ -5,22 +5,23 @@ pluginlibdir = $(gimpplugindir)/plug-ins
|
||||
pluginlib_PROGRAMS = AlienMap
|
||||
|
||||
AlienMap_SOURCES = \
|
||||
AlienMap.c logo.h
|
||||
AlienMap.c \
|
||||
logo.h
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
AlienMap_DEPENDENCIES = $(DEPS)
|
||||
|
||||
@ -36,8 +37,3 @@ files:
|
||||
echo $$subdir/$$file; \
|
||||
done; \
|
||||
done
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -8,20 +8,19 @@ CEL_SOURCES = \
|
||||
CEL.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
CEL_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -8,20 +8,19 @@ CML_explorer_SOURCES = \
|
||||
CML_explorer.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
CML_explorer_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -5,24 +5,46 @@ pluginlibdir = $(gimpplugindir)/plug-ins
|
||||
pluginlib_PROGRAMS = Lighting
|
||||
|
||||
Lighting_SOURCES = \
|
||||
amb1.xpm amb2.xpm diffint1.xpm diffint2.xpm diffref1.xpm diffref2.xpm high1.xpm high2.xpm lighting_apply.c lighting_apply.h lighting_image.c lighting_image.h lighting_main.c lighting_main.h lighting_pixmaps.h lighting_preview.c lighting_preview.h lighting_shade.c lighting_shade.h lighting_ui.c lighting_ui.h specref1.xpm specref2.xpm
|
||||
amb1.xpm \
|
||||
amb2.xpm \
|
||||
diffint1.xpm \
|
||||
diffint2.xpm \
|
||||
diffref1.xpm \
|
||||
diffref2.xpm \
|
||||
high1.xpm \
|
||||
high2.xpm \
|
||||
lighting_apply.c \
|
||||
lighting_apply.h \
|
||||
lighting_image.c \
|
||||
lighting_image.h \
|
||||
lighting_main.c \
|
||||
lighting_main.h \
|
||||
lighting_pixmaps.h \
|
||||
lighting_preview.c \
|
||||
lighting_preview.h \
|
||||
lighting_shade.c \
|
||||
lighting_shade.h \
|
||||
lighting_ui.c \
|
||||
lighting_ui.h \
|
||||
specref1.xpm \
|
||||
specref2.xpm
|
||||
|
||||
INCLUDES = \
|
||||
-I$(top_srcdir) \
|
||||
-I$(top_srcdir)/plug-ins/libgck \
|
||||
-I$(includedir) \
|
||||
$(X_CFLAGS)
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(top_builddir)/plug-ins/libgck/gck/libgck.la \
|
||||
$(X_LIBS) \
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(top_builddir)/plug-ins/libgck/gck/libgck.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(top_builddir)/plug-ins/libgck/gck/libgck.la
|
||||
|
||||
Lighting_DEPENDENCIES = $(DEPS)
|
||||
|
||||
@ -132,17 +132,6 @@ SUBDIRS = \
|
||||
|
||||
scriptdata =
|
||||
|
||||
pluginlibdir = $(gimpplugindir)/plug-ins
|
||||
|
||||
EXTRA_DIST = build.in
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
-I$(includedir)
|
||||
|
||||
LIBGIMPUI = $(top_builddir)/libgimp/libgimpui.la
|
||||
|
||||
.PHONY: files
|
||||
|
||||
files:
|
||||
|
||||
@ -5,24 +5,48 @@ pluginlibdir = $(gimpplugindir)/plug-ins
|
||||
pluginlib_PROGRAMS = MapObject
|
||||
|
||||
MapObject_SOURCES = \
|
||||
amb1.xpm amb2.xpm arcball.c arcball.h diffint1.xpm diffint2.xpm diffref1.xpm diffref2.xpm high1.xpm high2.xpm mapobject_apply.c mapobject_apply.h mapobject_image.c mapobject_image.h mapobject_main.c mapobject_main.h mapobject_pixmaps.h mapobject_preview.c mapobject_preview.h mapobject_shade.c mapobject_shade.h mapobject_ui.c mapobject_ui.h specref1.xpm specref2.xpm
|
||||
amb1.xpm \
|
||||
amb2.xpm \
|
||||
arcball.c \
|
||||
arcball.h \
|
||||
diffint1.xpm \
|
||||
diffint2.xpm \
|
||||
diffref1.xpm \
|
||||
diffref2.xpm \
|
||||
high1.xpm \
|
||||
high2.xpm \
|
||||
mapobject_apply.c \
|
||||
mapobject_apply.h \
|
||||
mapobject_image.c \
|
||||
mapobject_image.h \
|
||||
mapobject_main.c \
|
||||
mapobject_main.h \
|
||||
mapobject_pixmaps.h \
|
||||
mapobject_preview.c \
|
||||
mapobject_preview.h \
|
||||
mapobject_shade.c \
|
||||
mapobject_shade.h \
|
||||
mapobject_ui.c \
|
||||
mapobject_ui.h \
|
||||
specref1.xpm \
|
||||
specref2.xpm
|
||||
|
||||
INCLUDES = \
|
||||
-I$(top_srcdir) \
|
||||
-I$(top_srcdir)/plug-ins/libgck \
|
||||
-I$(includedir) \
|
||||
$(X_CFLAGS)
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(top_builddir)/plug-ins/libgck/gck/libgck.la \
|
||||
$(X_LIBS) \
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(top_builddir)/plug-ins/libgck/gck/libgck.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(top_builddir)/plug-ins/libgck/gck/libgck.la
|
||||
|
||||
MapObject_DEPENDENCIES = $(DEPS)
|
||||
|
||||
@ -4,23 +4,24 @@ pluginlibdir = $(gimpplugindir)/plug-ins
|
||||
|
||||
pluginlib_PROGRAMS = aa
|
||||
|
||||
aa_SOURCES = aa.c
|
||||
aa_SOURCES = \
|
||||
aa.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
@LIBAA_LIB@ \
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
@LIBAA_LIB@ \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
aa_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -8,20 +8,19 @@ align_layers_SOURCES = \
|
||||
align_layers.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
align_layers_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -8,20 +8,19 @@ animationplay_SOURCES = \
|
||||
animationplay.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
animationplay_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -8,20 +8,19 @@ animoptimize_SOURCES = \
|
||||
animoptimize.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
animoptimize_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -8,20 +8,19 @@ apply_lens_SOURCES = \
|
||||
apply_lens.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
apply_lens_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -8,20 +8,19 @@ autocrop_SOURCES = \
|
||||
autocrop.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
autocrop_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -8,20 +8,19 @@ autostretch_hsv_SOURCES = \
|
||||
autostretch_hsv.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
autostretch_hsv_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -8,20 +8,19 @@ blinds_SOURCES = \
|
||||
blinds.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
blinds_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -5,24 +5,25 @@ pluginlibdir = $(gimpplugindir)/plug-ins
|
||||
pluginlib_PROGRAMS = blur
|
||||
|
||||
blur_SOURCES = \
|
||||
blur.c $(top_srcdir)/plug-ins/gpc/gpc.h
|
||||
$(top_srcdir)/plug-ins/gpc/gpc.h \
|
||||
blur.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/plug-ins/gpc/libgpc.a \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
$(top_builddir)/plug-ins/gpc/libgpc.a \
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/plug-ins/gpc/libgpc.a \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(top_builddir)/plug-ins/gpc/libgpc.a
|
||||
|
||||
blur_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -5,25 +5,25 @@ pluginlibdir = $(gimpplugindir)/plug-ins
|
||||
pluginlib_PROGRAMS = bmp
|
||||
|
||||
bmp_SOURCES = \
|
||||
bmp.c bmp.h bmpread.c bmpwrite.c
|
||||
bmp.c \
|
||||
bmp.h \
|
||||
bmpread.c \
|
||||
bmpwrite.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
bmp_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -1,228 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
# save the program name
|
||||
progname=$0
|
||||
|
||||
# need to know common directories
|
||||
srcdir="@srcdir@"
|
||||
top_srcdir="@top_srcdir@"
|
||||
top_builddir=".."
|
||||
prefix="@prefix@"
|
||||
|
||||
# need to know some file and library location
|
||||
gtkxconfig="$top_builddir/gtk+/gtk+.xconfig"
|
||||
libgimp="$top_builddir/libgimp/libgimp.la"
|
||||
libgimpui="$top_builddir/libgimp/libgimpui.la"
|
||||
libgtk="$top_builddir/gtk+/gtk/libgtk.la"
|
||||
libgdk="$top_builddir/gtk+/gdk/libgdk.la"
|
||||
libglib="$top_builddir/gtk+/glib/libglib.la"
|
||||
|
||||
# print out a usage summary and exit
|
||||
usage ()
|
||||
{
|
||||
cat <<EOF
|
||||
Usage: $progname [option] <plug_in_name>"
|
||||
|
||||
-h Display this help message and exit.
|
||||
--help
|
||||
|
||||
-s <file> Specify a source file or files. If
|
||||
--source <file> a source file is not specified the name
|
||||
of the source file will be determined
|
||||
from the name of the plugin. For example,
|
||||
the plugin "blur" would have the source
|
||||
file "blur.c" associated with it.
|
||||
|
||||
-v Print out messages saying what is happening
|
||||
--verbose at each step of the build process.
|
||||
|
||||
-n Print out commands that would be executed
|
||||
--nothing but don't actually execute them.
|
||||
|
||||
-e Print the build environment and exit.
|
||||
--environment
|
||||
|
||||
<var>=<value> Set the build environment variable <var> tp
|
||||
have the value <value>.
|
||||
-<var>=<value> Append <value> to the build environment
|
||||
variable <var>.
|
||||
+<var>=<value> Prepend <value> to the build environment
|
||||
variable <var>
|
||||
EOF
|
||||
exit 0
|
||||
}
|
||||
|
||||
# initialize various variable to blank
|
||||
plugin=
|
||||
sources=
|
||||
verbose=
|
||||
environment=
|
||||
nothing=
|
||||
prev=
|
||||
|
||||
# loop over the options
|
||||
for option
|
||||
do
|
||||
# if the previous option takes an argument
|
||||
# we take care of setting the appropriate variable
|
||||
# here
|
||||
if test -n "$prev"; then
|
||||
eval "$prev=\"\$$prev \$option\""
|
||||
prev=
|
||||
continue
|
||||
fi
|
||||
|
||||
case "$option" in
|
||||
-h|--help) usage ;;
|
||||
-s|--source) prev="sources" ;;
|
||||
-v|--verbose) verbose="true" ;;
|
||||
-e|--environment) environment="true" ;;
|
||||
-n|--nothing) nothing="true" ;;
|
||||
*=*)
|
||||
# if the option was of the form [-+]<var>=<value>
|
||||
# then we want to evaluate the argument as it
|
||||
# is intended to set an environment variable.
|
||||
# this would fairly simple, except for having to
|
||||
# deal with the [-+] symbols that can be prepended.
|
||||
# these have to be stripped off and converted into
|
||||
# the corresponding "post_" and "pre_" strings
|
||||
# respectively.
|
||||
opt=`echo "$option" | sed 's/=[_a-zA-Z0-9]*//'`
|
||||
arg=`echo "$option" | sed 's/[-+_a-zA-Z0-9]*=//'`
|
||||
|
||||
case "$opt" in
|
||||
-*) opt=`echo "$opt" | sed 's/-//'`
|
||||
opt="post_$opt" ;;
|
||||
+*) opt=`echo "$opt" | sed 's/+//'`
|
||||
opt="pre_$opt" ;;
|
||||
esac
|
||||
|
||||
eval "$opt=\$arg" ;;
|
||||
*)
|
||||
if test -z "$plugin"; then
|
||||
plugin="$option"
|
||||
else
|
||||
usage
|
||||
fi ;;
|
||||
esac
|
||||
done
|
||||
|
||||
# get build environment variables
|
||||
|
||||
if test ! -f $gtkxconfig; then
|
||||
echo "error: could not find \"$gtkxconfig\""
|
||||
fi
|
||||
|
||||
# extract the X flags from the gtk+.xconfig file
|
||||
X_CFLAGS=`grep X_CFLAGS $gtkxconfig | sed 's/X_CFLAGS[ \t]*=[ \t]*//'`
|
||||
X_LDFLAGS=`grep X_LDFLAGS $gtkxconfig | sed 's/X_LDFLAGS[ \t]*=[ \t]*//'`
|
||||
X_LIBS=`grep X_LIBS $gtkxconfig | sed 's/X_LIBS[ \t]*=[ \t]*//'`
|
||||
|
||||
# we only set environment variables if they aren't already defined
|
||||
CC=${CC:-"$pre_CC @CC@ $post_CC"}
|
||||
LIBTOOL=${LIBTOOL:-"$pre_LIBTOOL $top_builddir/libtool $post_LIBTOOL"}
|
||||
CFLAGS=${CFLAGS:-"$pre_CFLAGS @CFLAGS@ $post_CFLAGS"}
|
||||
INCLUDES=${INCLUDES:-"$pre_INCLUDES $X_CFLAGS -I$top_srcdir -I$top_srcdir/gtk+ -I/usr/local/include $post_INCLUDES"}
|
||||
DEFS=${DEFS:-"$pre_DEFS @DEFS@ -I. -I$srcdir -I.. $post_defs"}
|
||||
CPPFLAGS=${CPPFLAGS:-"$pre_CPPFLAGS @CPPFLAGS@ $post_CPPFLAGS"}
|
||||
LDFLAGS=${LDFLAGS:-"$pre_LDFLAGS @LDFLAGS@ $post_LDFLAGS"}
|
||||
LDADD=${LDADD:-"$pre_LDADD $X_LDFLAGS -L/usr/local/lib $post_LDADD"}
|
||||
LIBS=${LIBS:-"$pre_LIBS $X_LIBS $libgimp $libgtk $libgdk $libglib -lc -lm $post_LIBS"}
|
||||
COMPILE=${COMPILE:-"$pre_COMPILE $CC $DEFS $INCLUDES $CPPFLAGS $CFLAGS $post_COMPILE"}
|
||||
LINK=${LINK:-"$pre_LINK $LIBTOOL --mode=link $CC $LDFLAGS -o $plugin $post_LINK"}
|
||||
|
||||
# print out the environment and exit if the user specified us to do so
|
||||
if test -n "$environment"; then
|
||||
echo CC = $CC
|
||||
echo LIBTOOL = $LIBTOOL
|
||||
echo CFLAGS = $CFLAGS
|
||||
echo INCLUDES = $INCLUDES
|
||||
echo DEFS = $DEFS
|
||||
echo CPPFLAGS = $CPPFLAGS
|
||||
echo LDFLAGS = $LDFLAGS
|
||||
echo LDADD = $LDADD
|
||||
echo LIBS = $LIBS
|
||||
echo COMPILE = $COMPILE
|
||||
echo LINK = $LINK
|
||||
exit 0
|
||||
fi
|
||||
|
||||
# if a name for a plugin wasn't specified then nothing can be done
|
||||
if test -z "$plugin"; then
|
||||
usage
|
||||
fi
|
||||
|
||||
# strip off the extension if it is present (we'll add it
|
||||
# back in real soon to determine the name of the source file
|
||||
# to use)
|
||||
plugin=`echo $plugin | sed 's/\.c//'`
|
||||
|
||||
# if the user didn't specify any sources, then calculate
|
||||
# the source file based on the plugin name
|
||||
if test -z "$sources"; then
|
||||
sources="$plugin.c"
|
||||
fi
|
||||
|
||||
# show the user what we're doing
|
||||
echo "plugin: $plugin"
|
||||
echo "sources: $sources"
|
||||
|
||||
# compile the source files. a source file is only compiled
|
||||
# if either a) its object file doesn't exist or b) it is
|
||||
# newer than its object file.
|
||||
objects=
|
||||
for file in $sources; do
|
||||
objfile=`echo "$file" | sed 's/\.c/\.o/'`
|
||||
|
||||
if test ! -f "$objfile" || test "$file" -nt "$objfile"; then
|
||||
cmd="$COMPILE -c $file"
|
||||
|
||||
if test -n "$verbose"; then
|
||||
echo $cmd
|
||||
else
|
||||
echo "compiling $file"
|
||||
fi
|
||||
|
||||
if test -z "$nothing"; then
|
||||
eval "$cmd"
|
||||
fi
|
||||
fi
|
||||
|
||||
objects="$objects $objfile";
|
||||
done
|
||||
|
||||
deps="$objects $libgimp $libgtk $libgdk $libglib"
|
||||
|
||||
# determine if the plugin needs to be linked with libgimpui.
|
||||
# (most plugins don't). we simply check the sources to see
|
||||
# if they include "gimpui.h"
|
||||
needlibgimpui=`grep gimpui.h $sources`
|
||||
if test -n "needlibgimpui"; then
|
||||
LIBS="$libgimpui $LIBS"
|
||||
deps="$deps $libgimpui"
|
||||
fi
|
||||
|
||||
# determine if the plugin needs to be linked. if any of the
|
||||
# dependencies (objects or libraries) are newer than the plugin
|
||||
# or the plugin does not exist it will be built.
|
||||
cmd=
|
||||
for file in $deps; do
|
||||
if test ! -f "$plugin" || test "$file" -nt "$plugin"; then
|
||||
cmd="$LINK $objects $LDADD $LIBS"
|
||||
break
|
||||
fi
|
||||
done
|
||||
|
||||
if test -n "$cmd"; then
|
||||
if test -n "$verbose"; then
|
||||
echo $cmd
|
||||
else
|
||||
echo "linking $plugin"
|
||||
fi
|
||||
|
||||
if test -z "$nothing"; then
|
||||
eval "$cmd"
|
||||
fi
|
||||
else
|
||||
echo "\`$plugin' is up to date"
|
||||
fi
|
||||
@ -8,20 +8,19 @@ bumpmap_SOURCES = \
|
||||
bumpmap.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
bumpmap_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -8,20 +8,19 @@ bz2_SOURCES = \
|
||||
bz2.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
bz2_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -8,20 +8,19 @@ c_astretch_SOURCES = \
|
||||
c_astretch.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
c_astretch_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -8,20 +8,19 @@ checkerboard_SOURCES = \
|
||||
checkerboard.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
checkerboard_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -8,20 +8,19 @@ colorify_SOURCES = \
|
||||
colorify.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
colorify_DEPENDENCIES = $(DEPS)
|
||||
|
||||
@ -37,6 +36,3 @@ files:
|
||||
echo $$subdir/$$file; \
|
||||
done; \
|
||||
done
|
||||
|
||||
|
||||
|
||||
|
||||
@ -8,20 +8,19 @@ compose_SOURCES = \
|
||||
compose.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
compose_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -8,20 +8,19 @@ convmatrix_SOURCES = \
|
||||
convmatrix.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
convmatrix_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -8,20 +8,19 @@ cubism_SOURCES = \
|
||||
cubism.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
cubism_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -13,19 +13,19 @@ dbbrowser_SOURCES = \
|
||||
dbbrowser_utils.h
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
dbbrowser_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -8,20 +8,19 @@ decompose_SOURCES = \
|
||||
decompose.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
decompose_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -5,24 +5,25 @@ pluginlibdir = $(gimpplugindir)/plug-ins
|
||||
pluginlib_PROGRAMS = deinterlace
|
||||
|
||||
deinterlace_SOURCES = \
|
||||
deinterlace.c $(top_srcdir)/plug-ins/megawidget/megawidget.h
|
||||
$(top_srcdir)/plug-ins/megawidget/megawidget.h \
|
||||
deinterlace.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/plug-ins/megawidget/libmegawidget.a \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
$(top_builddir)/plug-ins/megawidget/libmegawidget.a \
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/plug-ins/megawidget/libmegawidget.a \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(top_builddir)/plug-ins/megawidget/libmegawidget.a
|
||||
|
||||
deinterlace_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -8,20 +8,19 @@ depthmerge_SOURCES = \
|
||||
depthmerge.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
depthmerge_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -8,20 +8,19 @@ despeckle_SOURCES = \
|
||||
despeckle.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
despeckle_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -8,20 +8,19 @@ destripe_SOURCES = \
|
||||
destripe.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
destripe_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -8,20 +8,19 @@ diffraction_SOURCES = \
|
||||
diffraction.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
diffraction_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -8,20 +8,19 @@ displace_SOURCES = \
|
||||
displace.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
displace_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -8,20 +8,19 @@ edge_SOURCES = \
|
||||
edge.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
edge_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -5,24 +5,25 @@ pluginlibdir = $(gimpplugindir)/plug-ins
|
||||
pluginlib_PROGRAMS = emboss
|
||||
|
||||
emboss_SOURCES = \
|
||||
emboss.c $(top_srcdir)/plug-ins/megawidget/megawidget.h
|
||||
$(top_srcdir)/plug-ins/megawidget/megawidget.h \
|
||||
emboss.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/plug-ins/megawidget/libmegawidget.a \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
$(top_builddir)/plug-ins/megawidget/libmegawidget.a \
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/plug-ins/megawidget/libmegawidget.a \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(top_builddir)/plug-ins/megawidget/libmegawidget.a
|
||||
|
||||
emboss_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -8,20 +8,19 @@ engrave_SOURCES = \
|
||||
engrave.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
engrave_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -8,20 +8,19 @@ exchange_SOURCES = \
|
||||
exchange.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
exchange_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -5,25 +5,25 @@ pluginlibdir = $(gimpplugindir)/plug-ins
|
||||
pluginlib_PROGRAMS = faxg3
|
||||
|
||||
faxg3_SOURCES = \
|
||||
faxg3.c g3.c g3.h run_tbl.c
|
||||
faxg3.c \
|
||||
g3.c \
|
||||
g3.h \
|
||||
run_tbl.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
faxg3_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -8,20 +8,19 @@ film_SOURCES = \
|
||||
film.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
film_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -5,23 +5,24 @@ pluginlibdir = $(gimpplugindir)/plug-ins
|
||||
pluginlib_PROGRAMS = fits
|
||||
|
||||
fits_SOURCES = \
|
||||
fits.c fitsrw.c fitsrw.h
|
||||
fits.c \
|
||||
fitsrw.c \
|
||||
fitsrw.h
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
fits_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -5,23 +5,32 @@ pluginlibdir = $(gimpplugindir)/plug-ins
|
||||
pluginlib_PROGRAMS = flame
|
||||
|
||||
flame_SOURCES = \
|
||||
cmap.c cmap.h flame.c flame.h libifs.c libifs.h megawidget.c megawidget.h rect.c rect.h
|
||||
cmap.c \
|
||||
cmap.h \
|
||||
flame.c \
|
||||
flame.h \
|
||||
libifs.c \
|
||||
libifs.h \
|
||||
megawidget.c \
|
||||
megawidget.h \
|
||||
rect.c \
|
||||
rect.h
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
$(LIBUCB_LIB) \
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
$(LIBUCB_LIB) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
flame_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -8,20 +8,19 @@ flarefx_SOURCES = \
|
||||
flarefx.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
flarefx_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -8,20 +8,19 @@ fractaltrace_SOURCES = \
|
||||
fractaltrace.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
fractaltrace_DEPENDENCIES = $(DEPS)
|
||||
|
||||
@ -37,6 +36,3 @@ files:
|
||||
echo $$subdir/$$file; \
|
||||
done; \
|
||||
done
|
||||
|
||||
|
||||
|
||||
|
||||
@ -8,20 +8,19 @@ gauss_iir_SOURCES = \
|
||||
gauss_iir.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
gauss_iir_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -8,20 +8,19 @@ gauss_rle_SOURCES = \
|
||||
gauss_rle.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
gauss_rle_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -8,20 +8,19 @@ gbr_SOURCES = \
|
||||
gbr.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
gbr_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -8,20 +8,19 @@ gee_SOURCES = \
|
||||
gee.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
gee_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -7,22 +7,23 @@ pluginlibdir = $(gimpplugindir)/plug-ins
|
||||
pluginlib_PROGRAMS = gfig
|
||||
|
||||
gfig_SOURCES = \
|
||||
gfig.c pix_data.h
|
||||
gfig.c \
|
||||
pix_data.h
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
gfig_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -14,9 +14,6 @@ gfigdata_DATA = \
|
||||
star2 \
|
||||
stars
|
||||
|
||||
|
||||
|
||||
|
||||
EXTRA_DATA =
|
||||
EXTRA_DIST = $(gfigdata_DATA)
|
||||
|
||||
|
||||
@ -5,25 +5,24 @@ pluginlibdir = $(gimpplugindir)/plug-ins
|
||||
pluginlib_PROGRAMS = gfli
|
||||
|
||||
gfli_SOURCES = \
|
||||
fli.h \
|
||||
fli.c \
|
||||
gfli.c
|
||||
fli.h \
|
||||
fli.c \
|
||||
gfli.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
gfli_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -8,20 +8,19 @@ gicon_SOURCES = \
|
||||
gicon.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
gicon_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -8,20 +8,19 @@ gif_SOURCES = \
|
||||
gif.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
gif_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -8,20 +8,19 @@ glasstile_SOURCES = \
|
||||
glasstile.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
glasstile_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -5,22 +5,23 @@ pluginlibdir = $(gimpplugindir)/plug-ins
|
||||
pluginlib_LIBRARIES = libgpc.a
|
||||
|
||||
libgpc_a_SOURCES = \
|
||||
gpc.c gpc.h
|
||||
gpc.c \
|
||||
gpc.h
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
libgpc_aDEPENDENCIES = $(DEPS)
|
||||
|
||||
@ -40,4 +41,3 @@ files:
|
||||
echo $$subdir/$$file; \
|
||||
done; \
|
||||
done
|
||||
|
||||
|
||||
@ -8,20 +8,19 @@ gqbist_SOURCES = \
|
||||
gqbist.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
gqbist_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -8,20 +8,19 @@ gradmap_SOURCES = \
|
||||
gradmap.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
gradmap_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -8,20 +8,19 @@ grid_SOURCES = \
|
||||
grid.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
grid_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -8,20 +8,19 @@ gtm_SOURCES = \
|
||||
gtm.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
gtm_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -8,20 +8,19 @@ gz_SOURCES = \
|
||||
gz.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
gz_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -8,20 +8,19 @@ header_SOURCES = \
|
||||
header.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
header_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -5,24 +5,25 @@ pluginlibdir = $(gimpplugindir)/plug-ins
|
||||
pluginlib_PROGRAMS = hot
|
||||
|
||||
hot_SOURCES = \
|
||||
hot.c $(top_srcdir)/plug-ins/megawidget/megawidget.h
|
||||
$(top_srcdir)/plug-ins/megawidget/megawidget.h \
|
||||
hot.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/plug-ins/megawidget/libmegawidget.a \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
$(top_builddir)/plug-ins/megawidget/libmegawidget.a \
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/plug-ins/megawidget/libmegawidget.a \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(top_builddir)/plug-ins/megawidget/libmegawidget.a
|
||||
|
||||
hot_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -8,20 +8,19 @@ hrz_SOURCES = \
|
||||
hrz.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
hrz_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -5,23 +5,24 @@ pluginlibdir = $(gimpplugindir)/plug-ins
|
||||
pluginlib_PROGRAMS = ifscompose
|
||||
|
||||
ifscompose_SOURCES = \
|
||||
ifscompose.c ifscompose.h ifscompose_utils.c
|
||||
ifscompose.c \
|
||||
ifscompose.h \
|
||||
ifscompose_utils.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
ifscompose_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -8,20 +8,19 @@ illusion_SOURCES = \
|
||||
illusion.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
illusion_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -8,20 +8,19 @@ iwarp_SOURCES = \
|
||||
iwarp.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
iwarp_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -8,20 +8,20 @@ jpeg_SOURCES = \
|
||||
jpeg.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
@LIBJPEG_LIB@ \
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
@LIBJPEG_LIB@ \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
jpeg_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -8,20 +8,19 @@ laplace_SOURCES = \
|
||||
laplace.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
laplace_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -3,7 +3,15 @@
|
||||
SRC_SUBDIRS = gck
|
||||
SUBDIRS = gck
|
||||
|
||||
EXTRA_DIST = TODO
|
||||
EXTRA_DIST = \
|
||||
TODO \
|
||||
docs/html/gck.html \
|
||||
docs/html/gck_application_window.html \
|
||||
docs/html/gck_dialog_window.html \
|
||||
docs/html/gckcolor.html \
|
||||
docs/html/gckmath.html \
|
||||
docs/html/gckui.html \
|
||||
docs/html/gckvector.html
|
||||
|
||||
.PHONY: files
|
||||
|
||||
@ -17,4 +25,3 @@ files:
|
||||
echo $$subdir/$$file; \
|
||||
done; \
|
||||
done
|
||||
|
||||
|
||||
@ -2,33 +2,38 @@
|
||||
|
||||
gckincludedir = $(includedir)/gck
|
||||
|
||||
lib_LTLIBRARIES = libgck.la
|
||||
lib_LTLIBRARIES = libgck-1.1.la
|
||||
|
||||
libgck_la_SOURCES = gckcolor.c \
|
||||
gcklistbox.c \
|
||||
gckmath.c \
|
||||
gckui.c \
|
||||
gckvector.c
|
||||
libgck_1_1_la_SOURCES = \
|
||||
gckcolor.c \
|
||||
gcklistbox.c \
|
||||
gckmath.c \
|
||||
gckui.c \
|
||||
gckvector.c
|
||||
|
||||
gckinclude_HEADERS = gck.h \
|
||||
gckcolor.h \
|
||||
gckcommon.h \
|
||||
gckimage.h \
|
||||
gcklistbox.h \
|
||||
gckmath.h \
|
||||
gcktypes.h \
|
||||
gckui.h \
|
||||
gckvector.h
|
||||
gckinclude_HEADERS = \
|
||||
gck.h \
|
||||
gckcolor.h \
|
||||
gckcommon.h \
|
||||
gckimage.h \
|
||||
gcklistbox.h \
|
||||
gckmath.h \
|
||||
gcktypes.h \
|
||||
gckui.h \
|
||||
gckvector.h
|
||||
|
||||
libgck_la_LDFLAGS = -version-info 1:0:0
|
||||
libgck_1_1_la_LDFLAGS = -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
|
||||
|
||||
INCLUDES = \
|
||||
-I.. \
|
||||
-I$(srcdir)/.. \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LIBADD = \
|
||||
$(GTK_LIBS)
|
||||
|
||||
.PHONY: files
|
||||
|
||||
files:
|
||||
|
||||
@ -11,20 +11,19 @@ CPPFLAGS = \
|
||||
@MAILER@
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
mail_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -8,20 +8,19 @@ max_rgb_SOURCES = \
|
||||
max_rgb.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
max_rgb_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -5,23 +5,26 @@ pluginlibdir = $(gimpplugindir)/plug-ins
|
||||
pluginlib_PROGRAMS = maze
|
||||
|
||||
maze_SOURCES = \
|
||||
maze.c maze.h maze_face.c algorithms.c handy.c
|
||||
algorithms.c \
|
||||
handy.c \
|
||||
maze.c \
|
||||
maze.h \
|
||||
maze_face.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
maze_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -8,20 +8,19 @@ mblur_SOURCES = \
|
||||
mblur.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
mblur_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -5,24 +5,25 @@ pluginlibdir = $(gimpplugindir)/plug-ins
|
||||
pluginlib_LIBRARIES = libmegawidget.a
|
||||
|
||||
libmegawidget_a_SOURCES = \
|
||||
megawidget.c megawidget.h
|
||||
megawidget.c \
|
||||
megawidget.h
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
libmegawidget_aDEPENDENCIES = $(DEPS)
|
||||
libmegawidget_a_DEPENDENCIES = $(DEPS)
|
||||
|
||||
.PHONY: files
|
||||
|
||||
|
||||
@ -5,23 +5,23 @@ pluginlibdir = $(gimpplugindir)/plug-ins
|
||||
pluginlib_PROGRAMS = mosaic
|
||||
|
||||
mosaic_SOURCES = \
|
||||
mosaic.c mosaic_logo.h
|
||||
mosaic.c \
|
||||
mosaic_logo.h
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
mosaic_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -8,20 +8,20 @@ mpeg_SOURCES = \
|
||||
mpeg.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
@LIBMPEG_LIB@ \
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
@LIBMPEG_LIB@ \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
mpeg_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -5,24 +5,25 @@ pluginlibdir = $(gimpplugindir)/plug-ins
|
||||
pluginlib_PROGRAMS = nlfilt
|
||||
|
||||
nlfilt_SOURCES = \
|
||||
nlfilt.c $(top_srcdir)/plug-ins/megawidget/megawidget.h
|
||||
$(top_srcdir)/plug-ins/megawidget/megawidget.h \
|
||||
nlfilt.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/plug-ins/megawidget/libmegawidget.a \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
$(top_builddir)/plug-ins/megawidget/libmegawidget.a \
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/plug-ins/megawidget/libmegawidget.a \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(top_builddir)/plug-ins/megawidget/libmegawidget.a
|
||||
|
||||
nlfilt_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -8,20 +8,19 @@ noisify_SOURCES = \
|
||||
noisify.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
noisify_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -8,20 +8,19 @@ normalize_SOURCES = \
|
||||
normalize.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
normalize_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -8,20 +8,19 @@ nova_SOURCES = \
|
||||
nova.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
nova_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -8,20 +8,19 @@ oilify_SOURCES = \
|
||||
oilify.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
oilify_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -5,22 +5,30 @@ pluginlibdir = $(gimpplugindir)/plug-ins
|
||||
pluginlib_PROGRAMS = pagecurl
|
||||
|
||||
pagecurl_SOURCES = \
|
||||
pagecurl.c curl0.xpm curl1.xpm curl2.xpm curl3.xpm curl4.xpm curl5.xpm curl6.xpm curl7.xpm
|
||||
pagecurl.c \
|
||||
curl0.xpm \
|
||||
curl1.xpm \
|
||||
curl2.xpm \
|
||||
curl3.xpm \
|
||||
curl4.xpm \
|
||||
curl5.xpm \
|
||||
curl6.xpm \
|
||||
curl7.xpm
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
pagecurl_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -8,20 +8,19 @@ palette_SOURCES = \
|
||||
palette.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
palette_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -8,20 +8,19 @@ papertile_SOURCES = \
|
||||
papertile.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
papertile_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -8,20 +8,19 @@ pat_SOURCES = \
|
||||
pat.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
pat_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -8,20 +8,19 @@ pcx_SOURCES = \
|
||||
pcx.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
pcx_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -8,20 +8,19 @@ pix_SOURCES = \
|
||||
pix.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
pix_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -8,20 +8,19 @@ pixelize_SOURCES = \
|
||||
pixelize.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
pixelize_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -8,20 +8,19 @@ plasma_SOURCES = \
|
||||
plasma.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
plasma_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -8,20 +8,20 @@ png_SOURCES = \
|
||||
png.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
@LIBPNG_LIB@ \
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
@LIBPNG_LIB@ \
|
||||
-lc -lm
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
png_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -8,20 +8,19 @@ pnm_SOURCES = \
|
||||
pnm.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
pnm_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
@ -8,20 +8,19 @@ polar_SOURCES = \
|
||||
polar.c
|
||||
|
||||
INCLUDES = \
|
||||
$(X_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
LDADD = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la \
|
||||
$(X_LIBS) \
|
||||
\
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
||||
$(GTK_LIBS) \
|
||||
-lc
|
||||
|
||||
DEPS = \
|
||||
$(top_builddir)/libgimp/libgimpui.la \
|
||||
$(top_builddir)/libgimp/libgimp.la
|
||||
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
||||
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
||||
|
||||
polar_DEPENDENCIES = $(DEPS)
|
||||
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user