1999-07-09 14:52:00 -07:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
|
2003-07-27 15:43:11 -07:00
|
|
|
if OS_WIN32
|
|
|
|
|
mwindows = -mwindows
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
AM_LDFLAGS = $(mwindows)
|
|
|
|
|
|
1999-07-09 14:52:00 -07:00
|
|
|
libexecdir = $(gimpplugindir)/plug-ins
|
|
|
|
|
|
|
|
|
|
libexec_PROGRAMS = sel2path
|
|
|
|
|
|
2002-06-07 16:00:46 -07:00
|
|
|
sel2path_SOURCES = \
|
2001-06-07 10:20:50 -07:00
|
|
|
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 \
|
|
|
|
|
sel2path.c \
|
1999-07-09 14:52:00 -07:00
|
|
|
sel2path_adv_dialog.c \
|
2001-06-07 10:20:50 -07:00
|
|
|
sel2path.h \
|
|
|
|
|
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
|
|
|
|
|
|
2002-06-07 16:00:46 -07:00
|
|
|
INCLUDES = \
|
|
|
|
|
-I$(top_srcdir) \
|
|
|
|
|
$(GTK_CFLAGS) \
|
|
|
|
|
-I$(includedir)
|
1999-07-09 14:52:00 -07:00
|
|
|
|
2002-06-07 16:00:46 -07:00
|
|
|
LDADD = \
|
2001-02-25 06:37:12 -08:00
|
|
|
$(top_builddir)/libgimp/libgimpui-$(LT_RELEASE).la \
|
|
|
|
|
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
|
|
|
|
|
$(top_builddir)/libgimp/libgimp-$(LT_RELEASE).la \
|
|
|
|
|
$(top_builddir)/libgimpcolor/libgimpcolor-$(LT_RELEASE).la \
|
2001-05-21 06:58:46 -07:00
|
|
|
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
2001-02-25 06:37:12 -08:00
|
|
|
$(GTK_LIBS) \
|
2002-06-07 16:00:46 -07:00
|
|
|
$(INTLLIBS)
|