gimp/plug-ins/nlfilt/Makefile.am

39 lines
813 B
Makefile
Raw Normal View History

1997-11-25 06:05:25 +08:00
## Process this file with automake to produce Makefile.in
pluginlibdir = $(gimpplugindir)/plug-ins
pluginlib_PROGRAMS = nlfilt
nlfilt_SOURCES = \
1998-06-20 03:47:34 +08:00
$(top_srcdir)/plug-ins/megawidget/megawidget.h \
nlfilt.c
1997-11-25 06:05:25 +08:00
INCLUDES = \
-I$(top_srcdir) \
1998-06-20 03:47:34 +08:00
$(GTK_CFLAGS) \
1997-11-25 06:05:25 +08:00
-I$(includedir)
LDADD = \
1998-06-20 03:47:34 +08:00
$(top_builddir)/plug-ins/megawidget/libmegawidget.a \
$(top_builddir)/libgimp/libgimp.la \
$(GTK_LIBS)
1997-11-25 06:05:25 +08:00
DEPS = \
$(top_builddir)/plug-ins/megawidget/libmegawidget.a \
$(top_builddir)/libgimp/libgimp.la
1997-11-25 06:05:25 +08:00
nlfilt_DEPENDENCIES = $(DEPS)
.PHONY: files
files:
@files=`ls $(DISTFILES) 2> /dev/null`; for p in $$files; do \
echo $$p; \
done
@for subdir in $(SUBDIRS); do \
files=`cd $$subdir; $(MAKE) files | grep -v "make\[[1-9]\]"`; \
for file in $$files; do \
echo $$subdir/$$file; \
done; \
done