mirror of https://github.com/GNOME/gimp.git
New dir. Does nothing yet...
This commit is contained in:
parent
1f17b12681
commit
6d9881fc20
|
@ -0,0 +1,6 @@
|
|||
Makefile
|
||||
Makefile.in
|
||||
.deps
|
||||
.libs
|
||||
*.lo
|
||||
libappbase.la
|
|
@ -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
|
Loading…
Reference in New Issue