gimp/plug-ins/pcx/Makefile.am

39 lines
788 B
Makefile
Raw Normal View History

1997-11-24 22:05:25 +00:00
## Process this file with automake to produce Makefile.in
pluginlibdir = $(gimpplugindir)/plug-ins
pluginlib_PROGRAMS = pcx
pcx_SOURCES = \
pcx.c
INCLUDES = \
-I$(top_srcdir) \
1998-06-19 19:47:34 +00:00
$(GTK_CFLAGS) \
1997-11-24 22:05:25 +00:00
-I$(includedir)
LDADD = \
1998-06-19 19:47:34 +00:00
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
$(GTK_LIBS) \
1997-11-24 22:05:25 +00:00
-lc
DEPS = \
1998-06-19 19:47:34 +00:00
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
1997-11-24 22:05:25 +00:00
pcx_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