mirror of https://github.com/GNOME/gimp.git
40 lines
810 B
Makefile
40 lines
810 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
pluginlibdir = $(gimpplugindir)/plug-ins
|
|
|
|
pluginlib_PROGRAMS = png
|
|
|
|
png_SOURCES = \
|
|
png.c
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
$(GTK_CFLAGS) \
|
|
-I$(includedir)
|
|
|
|
LDADD = \
|
|
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
|
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la \
|
|
$(GTK_LIBS) \
|
|
@LIBPNG_LIB@ \
|
|
-lc -lm
|
|
|
|
DEPS = \
|
|
$(top_builddir)/libgimp/libgimpui-@LT_RELEASE@.la \
|
|
$(top_builddir)/libgimp/libgimp-@LT_RELEASE@.la
|
|
|
|
png_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
|