From c8242f637c86007a94c42e5c92aa0a05e08178ef Mon Sep 17 00:00:00 2001 From: Michael Natterer Date: Tue, 8 May 2001 19:00:13 +0000 Subject: [PATCH] Pre-commit so Yosh can see what files to copy :) --- app/core/Makefile.am | 88 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 88 insertions(+) create mode 100644 app/core/Makefile.am diff --git a/app/core/Makefile.am b/app/core/Makefile.am new file mode 100644 index 0000000000..f775a496f3 --- /dev/null +++ b/app/core/Makefile.am @@ -0,0 +1,88 @@ +## Process this file with automake to produce Makefile.in + +noinst_LTLIBRARIES = libappcore.la + +libappcore_la_SOURCES = \ + gimpbrush.c \ + gimpbrush.h \ + gimpbrush-header.h \ + gimpbrushgenerated.c \ + gimpbrushgenerated.h \ + gimpbrushpipe.c \ + gimpbrushpipe.h \ + gimpchannel.c \ + gimpchannel.h \ + gimpcontainer.c \ + gimpcontainer.h \ + gimpcontext.c \ + gimpcontext.h \ + gimpdata.c \ + gimpdata.h \ + gimpdatafactory.c \ + gimpdatafactory.h \ + gimpdatalist.c \ + gimpdatalist.h \ + gimpdrawable.c \ + gimpdrawable.h \ + gimpdrawable-desaturate.c \ + gimpdrawable-desaturate.h \ + gimpdrawable-equalize.c \ + gimpdrawable-equalize.h \ + gimpdrawable-invert.c \ + gimpdrawable-invert.h \ + gimpdrawable-offset.c \ + gimpdrawable-offset.h \ + gimpdrawable-preview.c \ + gimpdrawable-preview.h \ + gimpgradient.c \ + gimpgradient.h \ + gimpimage.c \ + gimpimage.h \ + gimpimage-convert.c \ + gimpimage-convert.h \ + gimpimage-duplicate.c \ + gimpimage-duplicate.h \ + gimpimage-mask.c \ (gimage_mask.c) + gimpimage-mask.h \ (gimage_mask.h) + gimpimage-undo.c \ + gimpimage-undo.h \ + gimplayer.c \ + gimplayer.h \ + gimplayermask.c \ + gimplayermask.h \ + gimplist.c \ + gimplist.h \ + gimpmarshal.c \ + gimpmarshal.h \ + gimpobject.c \ + gimpobject.h \ + gimppattern.c \ + gimppattern.h \ + gimppattern-header.h \ + gimppalette.c \ + gimppalette.h \ + gimppalette-import.c \ + gimppalette-import.h \ + gimpundo.c \ + gimpundo.h \ + gimpundostack.c \ + gimpundostack.h \ + gimpviewable.c \ + gimpviewable.h \ + + +AM_CPPFLAGS = \ + -DG_LOG_DOMAIN=\"Gimp-Core\" + +INCLUDES = \ + -I$(top_srcdir) \ + -I$(top_srcdir)/app \ + $(GTK_CFLAGS) \ + -I$(includedir) + +.PHONY: files + +files: + @files=`ls $(DISTFILES) 2> /dev/null`; for p in $$files; do \ + echo $$p; \ + done