From 6d9881fc20a10f6dd584b4c8395b6624103e28da Mon Sep 17 00:00:00 2001 From: Michael Natterer Date: Mon, 14 May 2001 01:00:07 +0000 Subject: [PATCH] New dir. Does nothing yet... --- app/base/.cvsignore | 6 ++++++ app/base/Makefile.am | 47 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 53 insertions(+) create mode 100644 app/base/.cvsignore create mode 100644 app/base/Makefile.am diff --git a/app/base/.cvsignore b/app/base/.cvsignore new file mode 100644 index 0000000000..9a8991c881 --- /dev/null +++ b/app/base/.cvsignore @@ -0,0 +1,6 @@ +Makefile +Makefile.in +.deps +.libs +*.lo +libappbase.la diff --git a/app/base/Makefile.am b/app/base/Makefile.am new file mode 100644 index 0000000000..377997f063 --- /dev/null +++ b/app/base/Makefile.am @@ -0,0 +1,47 @@ +## Process this file with automake to produce Makefile.in + +noinst_LTLIBRARIES = libappbase.la + +libappbase_la_SOURCES = \ + boundary.c \ + boundary.h \ + brush-scale.c \ + brush-scale.h \ + gimplut.c \ + gimplut.h \ + lut-funcs.c \ + lut-funcs.h \ + pixel-processor.c \ + pixel-processor.h \ + pixel-region.c \ + pixel-region.h \ + pixel-surround.c \ + pixel-surround.h \ + temp-buf.c \ + temp-buf.h \ + tile.c \ + tile.h \ + tile-private.h \ + tile-cache.c \ + tile-cache.h \ + tile-manager.c \ + tile-manager.h \ + tile-manager-private.h \ + tile-swap.c \ + tile-swap.h + +AM_CPPFLAGS = \ + -DG_LOG_DOMAIN=\"Gimp-Base\" + +INCLUDES = \ + -I$(top_srcdir) \ + -I$(top_srcdir)/app \ + $(GLIB_CFLAGS) \ + -I$(includedir) + +.PHONY: files + +files: + @files=`ls $(DISTFILES) 2> /dev/null`; for p in $$files; do \ + echo $$p; \ + done