1998-03-20 10:40:04 +08:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
|
|
|
SUBDIRS = gfig-examples
|
|
|
|
|
1999-06-25 09:29:23 +08:00
|
|
|
libexecdir = $(gimpplugindir)/plug-ins
|
1998-03-20 10:40:04 +08:00
|
|
|
|
1999-06-24 08:58:39 +08:00
|
|
|
EXTRA_DIST = README
|
|
|
|
|
1999-06-25 09:29:23 +08:00
|
|
|
libexec_PROGRAMS = gfig
|
1998-03-20 10:40:04 +08:00
|
|
|
|
|
|
|
gfig_SOURCES = \
|
1998-06-20 03:47:34 +08:00
|
|
|
gfig.c \
|
|
|
|
pix_data.h
|
1998-03-20 10:40:04 +08:00
|
|
|
|
|
|
|
INCLUDES = \
|
|
|
|
-I$(top_srcdir) \
|
1998-06-20 03:47:34 +08:00
|
|
|
$(GTK_CFLAGS) \
|
1998-03-20 10:40:04 +08:00
|
|
|
-I$(includedir)
|
|
|
|
|
|
|
|
LDADD = \
|
1998-09-21 07:04:33 +08:00
|
|
|
$(top_builddir)/libgimp/libgimpui.la \
|
|
|
|
$(top_builddir)/libgimp/libgimp.la \
|
1999-06-11 03:20:43 +08:00
|
|
|
$(GTK_LIBS) \
|
|
|
|
$(INTLLIBS)
|
1998-03-20 10:40:04 +08:00
|
|
|
|
|
|
|
.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
|