mirror of https://github.com/GNOME/gimp.git
44 lines
764 B
Makefile
44 lines
764 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
pluginlibdir = $(gimpplugindir)/plug-ins
|
|
|
|
pluginlib_PROGRAMS = pagecurl
|
|
|
|
pagecurl_SOURCES = \
|
|
pagecurl.c \
|
|
curl0.xpm \
|
|
curl1.xpm \
|
|
curl2.xpm \
|
|
curl3.xpm \
|
|
curl4.xpm \
|
|
curl5.xpm \
|
|
curl6.xpm \
|
|
curl7.xpm
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
$(GTK_CFLAGS) \
|
|
-I$(includedir)
|
|
|
|
LDADD = \
|
|
$(top_builddir)/libgimp/libgimp.la \
|
|
$(GTK_LIBS)
|
|
|
|
DEPS = \
|
|
$(top_builddir)/libgimp/libgimp.la
|
|
|
|
pagecurl_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
|