Thu Jul 1 23:37:38 1999 Owen Taylor <otaylor@redhat.com> * ifscompose_storage.c: New file implementing saving and loading of parameters in text format. * ifscompose.c: Store parameters in parasites. Also, use new format for storing parameters between invokations of IfsCompose on different layers.
30 lines
526 B
Makefile
30 lines
526 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
libexecdir = $(gimpplugindir)/plug-ins
|
|
|
|
EXTRA_DIST = README.ifscompose
|
|
|
|
libexec_PROGRAMS = ifscompose
|
|
|
|
ifscompose_SOURCES = \
|
|
ifscompose.c \
|
|
ifscompose.h \
|
|
ifscompose_utils.c \
|
|
ifscompose_storage.c
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
$(GTK_CFLAGS) \
|
|
-I$(includedir)
|
|
|
|
LDADD = \
|
|
$(top_builddir)/libgimp/libgimp.la \
|
|
$(GTK_LIBS) \
|
|
$(INTLLIBS)
|
|
|
|
.PHONY: files
|
|
|
|
files:
|
|
@files=`ls $(DISTFILES) 2> /dev/null`; for p in $$files; do \
|
|
echo $$p; \
|
|
done
|