New dir. Does nothing yet...

This commit is contained in:
Michael Natterer 2001-05-14 01:00:07 +00:00
parent 1f17b12681
commit 6d9881fc20
2 changed files with 53 additions and 0 deletions

6
app/base/.cvsignore Normal file
View File

@ -0,0 +1,6 @@
Makefile
Makefile.in
.deps
.libs
*.lo
libappbase.la

47
app/base/Makefile.am Normal file
View File

@ -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