1997-11-25 06:05:25 +08:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
2010-02-25 22:11:04 +08:00
|
|
|
if OS_WIN32
|
|
|
|
mwindows = -mwindows
|
|
|
|
else
|
|
|
|
libm = -lm
|
|
|
|
endif
|
|
|
|
|
2004-01-22 11:51:46 +08:00
|
|
|
libgimpui = $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la
|
2005-02-05 05:55:06 +08:00
|
|
|
libgimpconfig = $(top_builddir)/libgimpconfig/libgimpconfig-$(GIMP_API_VERSION).la
|
2004-01-22 11:51:46 +08:00
|
|
|
libgimpwidgets = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la
|
|
|
|
libgimp = $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la
|
|
|
|
libgimpcolor = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la
|
|
|
|
libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la
|
2011-12-13 02:10:55 +08:00
|
|
|
libgimpmath = $(top_builddir)/libgimpmath/libgimpmath-$(GIMP_API_VERSION).la
|
2003-07-28 06:43:11 +08:00
|
|
|
|
2010-09-01 14:24:45 +08:00
|
|
|
if HAVE_WINDRES
|
|
|
|
include $(top_srcdir)/build/windows/gimprc-plug-ins.rule
|
|
|
|
ifs_compose_RC = ifs-compose.rc.o
|
|
|
|
endif
|
|
|
|
|
2003-07-28 06:43:11 +08:00
|
|
|
AM_LDFLAGS = $(mwindows)
|
|
|
|
|
2018-05-12 06:28:05 +08:00
|
|
|
libexecdir = $(gimpplugindir)/plug-ins/ifs-compose
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2008-03-25 02:33:25 +08:00
|
|
|
libexec_PROGRAMS = ifs-compose
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2008-03-25 02:33:25 +08:00
|
|
|
ifs_compose_SOURCES = \
|
|
|
|
ifs-compose.c \
|
|
|
|
ifs-compose.h \
|
|
|
|
ifs-compose-utils.c \
|
|
|
|
ifs-compose-storage.c
|
2001-06-08 01:20:50 +08:00
|
|
|
|
|
|
|
EXTRA_DIST = README.ifscompose
|
|
|
|
|
2013-06-06 02:48:37 +08:00
|
|
|
AM_CPPFLAGS = \
|
2002-06-08 07:00:46 +08:00
|
|
|
-I$(top_srcdir) \
|
|
|
|
$(GTK_CFLAGS) \
|
2019-08-28 09:36:34 +08:00
|
|
|
$(GEGL_CFLAGS) \
|
2002-06-08 07:00:46 +08:00
|
|
|
-I$(includedir)
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2002-06-08 07:00:46 +08:00
|
|
|
LDADD = \
|
2011-12-13 02:10:55 +08:00
|
|
|
$(libm) \
|
2004-01-22 11:51:46 +08:00
|
|
|
$(libgimpui) \
|
|
|
|
$(libgimpwidgets) \
|
2005-02-05 06:31:58 +08:00
|
|
|
$(libgimpconfig) \
|
2004-01-22 11:51:46 +08:00
|
|
|
$(libgimp) \
|
|
|
|
$(libgimpcolor) \
|
2005-02-24 06:01:58 +08:00
|
|
|
$(libgimpmath) \
|
2004-01-22 11:51:46 +08:00
|
|
|
$(libgimpbase) \
|
|
|
|
$(GTK_LIBS) \
|
2013-03-16 06:52:38 +08:00
|
|
|
$(GEGL_LIBS) \
|
2004-01-22 11:51:46 +08:00
|
|
|
$(RT_LIBS) \
|
2010-09-01 14:24:45 +08:00
|
|
|
$(INTLLIBS) \
|
|
|
|
$(ifs_compose_RC)
|