gimp/plug-ins/fp/Makefile.am

35 lines
522 B
Makefile
Raw Normal View History

## Process this file with automake to produce Makefile.in
libexecdir = $(gimpplugindir)/plug-ins
libexec_PROGRAMS = fp
fp_SOURCES = \
fp.c \
fp.h \
fp_gdk.c \
fp_gtk.c \
fp_hsv.c \
fp_hsv.h \
fp_misc.c
1999-12-29 02:50:43 +08:00
AM_CPPFLAGS = \
-DLOCALEDIR=\""$(localedir)"\"
INCLUDES = \
-I$(top_srcdir) \
$(GTK_CFLAGS) \
-I$(includedir)
LDADD = \
$(top_builddir)/libgimp/libgimp.la \
1999-06-11 03:20:43 +08:00
$(GTK_LIBS) \
$(INTLLIBS)
.PHONY: files
files:
@files=`ls $(DISTFILES) 2> /dev/null`; for p in $$files; do \
echo $$p; \
done