gimp/plug-ins/flame/Makefile.am

40 lines
633 B
Makefile

## Process this file with automake to produce Makefile.in
libexecdir = $(gimpplugindir)/plug-ins
EXTRA_DIST = README
libexec_PROGRAMS = flame
flame_SOURCES = \
cmap.c \
cmap.h \
flame.c \
flame.h \
libifs.c \
libifs.h \
megawidget.c \
megawidget.h \
rect.c \
rect.h
INCLUDES = \
-DLOCALEDIR=\""$(localedir)"\" \
-I$(top_srcdir) \
$(GTK_CFLAGS) \
-I$(includedir)
LDADD = \
$(top_builddir)/libgimp/libgimpui.la \
$(top_builddir)/libgimp/libgimp.la \
$(GTK_LIBS) \
$(LIBUCB) \
$(INTLLIBS)
.PHONY: files
files:
@files=`ls $(DISTFILES) 2> /dev/null`; for p in $$files; do \
echo $$p; \
done