Fri Jul 9 22:24:53 BST 1999 Andy Thomas <alt@gimp.org> * configure.in * plug-ins/Makefile.am * plug-ins/sel2path/* <- New directory * app/paths_dialog.c * pixmap/topath.xpm New function implemented by a plugin. Will convert a selection into a path. Please see the README in sel2path directory for more details (especially where the underlying algorithms/code were obtained from).
51 lines
807 B
Makefile
51 lines
807 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
libexecdir = $(gimpplugindir)/plug-ins
|
|
|
|
EXTRA_DIST = README \
|
|
README.limn
|
|
|
|
libexec_PROGRAMS = sel2path
|
|
|
|
sel2path_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 \
|
|
sel2path.c \
|
|
sel2path_adv_dialog.c \
|
|
sel2path.h \
|
|
spline.c \
|
|
spline.h \
|
|
types.h \
|
|
vector.c \
|
|
vector.h
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
$(GTK_CFLAGS) \
|
|
-I$(includedir)
|
|
|
|
AM_CPPFLAGS = \
|
|
-DLOCALEDIR=\""$(localedir)"\"
|
|
|
|
LDADD = \
|
|
$(top_builddir)/libgimp/libgimp.la \
|
|
$(top_builddir)/plug-ins/libgck/gck/libgck.la \
|
|
$(GTK_LIBS) \
|
|
$(INTLLIBS)
|
|
|
|
.PHONY: files
|
|
|
|
files:
|
|
@files=`ls $(DISTFILES) 2> /dev/null`; for p in $$files; do \
|
|
echo $$p; \
|
|
done
|