app/Makefile.am removed.

2001-07-12  Michael Natterer  <mitch@gimp.org>

	* app/Makefile.am
	* app/detect_mmx.S: removed.

	* app/base/Makefile.am
	* app/base/detect-mmx.S: added.
This commit is contained in:
Michael Natterer 2001-07-11 23:47:26 +00:00 committed by Michael Natterer
parent 166714985c
commit 7aff6c8fbe
4 changed files with 18 additions and 10 deletions

View file

@ -1,3 +1,11 @@
2001-07-12 Michael Natterer <mitch@gimp.org>
* app/Makefile.am
* app/detect_mmx.S: removed.
* app/base/Makefile.am
* app/base/detect-mmx.S: added.
2001-07-11 Michael Natterer <mitch@gimp.org>
* app/Makefile.am

View file

@ -12,13 +12,6 @@ regex_sources = \
regexrepl.h
endif
if HAVE_ASM_MMX
mmx_sources = \
detect_mmx.S
else
mmx_sources =
endif
bin_PROGRAMS = gimp
gimp_SOURCES = @STRIP_BEGIN@ \
@ -135,7 +128,6 @@ gimp_SOURCES = @STRIP_BEGIN@ \
libgimp_glue.c \
libgimp_glue.h \
$(regex_sources) \
$(mmx_sources) \
@STRIP_END@
EXTRA_DIST = \
@ -147,7 +139,6 @@ EXTRA_DIST = \
wilber.ico \
arch/i386/mmx/detect_mmx.S \
arch/i386/mmx/paint_funcs_mmx.S \
detect_mmx.S \
regexrepl.c \
regexrepl.h

View file

@ -2,6 +2,13 @@
noinst_LIBRARIES = libappbase.a
if HAVE_ASM_MMX
mmx_sources = \
detect-mmx.S
else
mmx_sources =
endif
libappbase_a_SOURCES = @STRIP_BEGIN@ \
base.c \
base.h \
@ -38,10 +45,12 @@ libappbase_a_SOURCES = @STRIP_BEGIN@ \
tile-manager-crop.h \
tile-swap.c \
tile-swap.h \
$(mmx_sources) \
@STRIP_END@
EXTRA_DIST = \
makefile.msc
makefile.msc \
detect-mmx.S
AM_CPPFLAGS = @STRIP_BEGIN@ \
-DG_LOG_DOMAIN=\"Gimp-Base\" \