1999-07-09 14:52:00 -07:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
|
2011-12-11 10:59:23 -08:00
|
|
|
if OS_WIN32
|
|
|
|
|
mwindows = -mwindows
|
|
|
|
|
else
|
|
|
|
|
libm = -lm
|
|
|
|
|
endif
|
|
|
|
|
|
2004-01-21 19:51:46 -08:00
|
|
|
libgimpui = $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la
|
2005-02-04 13:55:06 -08:00
|
|
|
libgimpconfig = $(top_builddir)/libgimpconfig/libgimpconfig-$(GIMP_API_VERSION).la
|
2004-01-21 19: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-12 10:10:55 -08:00
|
|
|
libgimpmath = $(top_builddir)/libgimpmath/libgimpmath-$(GIMP_API_VERSION).la
|
2003-07-27 15:43:11 -07:00
|
|
|
|
2010-08-31 23:24:45 -07:00
|
|
|
if HAVE_WINDRES
|
|
|
|
|
include $(top_srcdir)/build/windows/gimprc-plug-ins.rule
|
|
|
|
|
selection_to_path_RC = selection-to-path.rc.o
|
|
|
|
|
endif
|
|
|
|
|
|
2003-07-27 15:43:11 -07:00
|
|
|
AM_LDFLAGS = $(mwindows)
|
|
|
|
|
|
2018-05-11 15:28:05 -07:00
|
|
|
libexecdir = $(gimpplugindir)/plug-ins/selection-to-path
|
1999-07-09 14:52:00 -07:00
|
|
|
|
2008-03-24 11:33:25 -07:00
|
|
|
libexec_PROGRAMS = selection-to-path
|
|
|
|
|
|
|
|
|
|
selection_to_path_SOURCES = \
|
|
|
|
|
bitmap.h \
|
|
|
|
|
bounding-box.h \
|
|
|
|
|
curve.c \
|
|
|
|
|
curve.h \
|
|
|
|
|
edge.c \
|
|
|
|
|
edge.h \
|
|
|
|
|
fit.c \
|
|
|
|
|
fit.h \
|
|
|
|
|
global.h \
|
|
|
|
|
math.c \
|
|
|
|
|
pxl-outline.c \
|
|
|
|
|
pxl-outline.h \
|
|
|
|
|
selection-to-path.c \
|
|
|
|
|
selection-to-path.h \
|
|
|
|
|
selection-to-path-dialog.c \
|
|
|
|
|
spline.c \
|
|
|
|
|
spline.h \
|
|
|
|
|
types.h \
|
|
|
|
|
vector.c \
|
2002-06-07 16:00:46 -07:00
|
|
|
vector.h
|
2001-06-07 10:20:50 -07:00
|
|
|
|
|
|
|
|
EXTRA_DIST = \
|
|
|
|
|
README \
|
|
|
|
|
README.limn
|
|
|
|
|
|
2013-06-05 11:48:37 -07:00
|
|
|
AM_CPPFLAGS = \
|
2002-06-07 16:00:46 -07:00
|
|
|
-I$(top_srcdir) \
|
|
|
|
|
$(GTK_CFLAGS) \
|
2012-03-21 18:26:33 -07:00
|
|
|
$(GEGL_CFLAGS) \
|
2002-06-07 16:00:46 -07:00
|
|
|
-I$(includedir)
|
1999-07-09 14:52:00 -07:00
|
|
|
|
2002-06-07 16:00:46 -07:00
|
|
|
LDADD = \
|
2011-12-12 10:10:55 -08:00
|
|
|
$(libm) \
|
2004-01-21 19:51:46 -08:00
|
|
|
$(libgimpui) \
|
|
|
|
|
$(libgimpwidgets) \
|
2005-02-04 14:31:58 -08:00
|
|
|
$(libgimpconfig) \
|
2005-02-23 14:01:58 -08:00
|
|
|
$(libgimpmath) \
|
2004-01-21 19:51:46 -08:00
|
|
|
$(libgimp) \
|
|
|
|
|
$(libgimpcolor) \
|
|
|
|
|
$(libgimpbase) \
|
|
|
|
|
$(GTK_LIBS) \
|
2012-11-20 15:45:07 -08:00
|
|
|
$(GEGL_LIBS) \
|
2004-01-21 19:51:46 -08:00
|
|
|
$(RT_LIBS) \
|
2010-08-31 23:24:45 -07:00
|
|
|
$(INTLLIBS) \
|
|
|
|
|
$(selection_to_path_RC)
|