Gimp/plug-ins/FractalExplorer/Makefile.am
Kelly Martin bceecbafe2 Fixed to use multiple compilation instead of one giant .c file with several
included .h files.  Ick.  See ChangeLog.

--klm
1999-09-09 02:51:57 +00:00

46 lines
870 B
Makefile

## Process this file with automake to produce Makefile.in
SUBDIRS = fractalexplorer-examples
libexecdir = $(gimpplugindir)/plug-ins
libexec_PROGRAMS = FractalExplorer
FractalExplorer_SOURCES = \
Callbacks.h \
Callbacks.c \
Dialogs.h \
Dialogs.c \
Events.h \
Events.c \
FractalExplorer.c \
FractalExplorer.h \
Globals.c \
Languages.h \
Languages.c \
logo.h \
pix_data.h
INCLUDES = \
-I$(top_srcdir) \
$(GTK_CFLAGS) \
-I$(includedir)
LDADD = \
$(top_builddir)/libgimp/libgimpui.la \
$(top_builddir)/libgimp/libgimp.la \
$(GTK_LIBS) \
$(INTLLIBS)
.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