2001-07-13 Michael Natterer <mitch@gimp.org> * app/appenv.h * app/main.c: removed "use_mmx" and the MMX detection. * app/base/Makefile.am: build the MMX detection unconditionally as it's already #ifdef'ed in the source. * app/base/detect-mmx.h: added a header for detect-mmx.S * app/base/base-config.[ch]: added the "use_mmx" boolean. * app/base/base.c: call intel_cpu_features() here. * app/paint-funcs/paint-funcs.c: #include "base/base-config.h". * app/floating_sel.c * app/core/gimpimage.c: removed commented out cruft. * app/core/gimplayer.c: gimp_layer_new_from_tiles(): pass the gimage instead of NULL to gimp_layer_new() because layers have to be created in an image context now (checked gimp_layer_new_from_tile()'s callers if this is semantically correct).
66 lines
1.1 KiB
Makefile
66 lines
1.1 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
noinst_LIBRARIES = libappbase.a
|
|
|
|
libappbase_a_SOURCES = @STRIP_BEGIN@ \
|
|
base.c \
|
|
base.h \
|
|
base-types.h \
|
|
base-config.c \
|
|
base-config.h \
|
|
boundary.c \
|
|
boundary.h \
|
|
brush-scale.c \
|
|
brush-scale.h \
|
|
detect-mmx.S \
|
|
detect-mmx.h \
|
|
gimphistogram.c \
|
|
gimphistogram.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-manager-crop.c \
|
|
tile-manager-crop.h \
|
|
tile-swap.c \
|
|
tile-swap.h \
|
|
@STRIP_END@
|
|
|
|
EXTRA_DIST = \
|
|
makefile.msc
|
|
|
|
AM_CPPFLAGS = @STRIP_BEGIN@ \
|
|
-DG_LOG_DOMAIN=\"Gimp-Base\" \
|
|
@GIMP_THREAD_FLAGS@ \
|
|
@GIMP_MP_FLAGS@ \
|
|
@STRIP_END@
|
|
|
|
INCLUDES = @STRIP_BEGIN@ \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/app \
|
|
$(GLIB_CFLAGS) \
|
|
-I$(includedir) \
|
|
@STRIP_END@
|
|
|
|
.PHONY: files
|
|
|
|
files:
|
|
@files=`ls $(DISTFILES) 2> /dev/null`; for p in $$files; do \
|
|
echo $$p; \
|
|
done
|