1
0
mirror of https://github.com/adtools/clib2.git synced 2025-12-08 14:59:05 +00:00

- Fixed the stack swapping function which, for reasons unknown, ceased to work.

git-svn-id: file:///Users/olsen/Code/migration-svn-zu-git/logical-line-staging/clib2/trunk@14746 87f5fb63-7c3d-0410-a384-fd976d0f7a62
This commit is contained in:
Olaf Barthel
2004-10-02 15:56:13 +00:00
parent 7038751f6b
commit 3f19d52557
4 changed files with 38 additions and 68 deletions

View File

@ -1,5 +1,5 @@
#
# $Id: GNUmakefile.os4,v 1.9 2004-09-29 14:17:44 obarthel Exp $
# $Id: GNUmakefile.os4,v 1.10 2004-10-02 15:56:12 obarthel Exp $
#
# :ts=8
#
@ -105,7 +105,7 @@ WARNINGS = \
INCLUDES = -Iinclude -I. -I$(SDK_INCLUDE)
OPTIONS = -DNDEBUG -DUSE_64_BIT_INTS -fno-builtin -D__USE_INLINE__ -Wa,-mregnames
OPTIMIZE = -O3 -fomit-frame-pointer -funroll-loops
OPTIMIZE = -O -fomit-frame-pointer -funroll-loops
#DEBUG = -g
CFLAGS = $(WARNINGS) $(OPTIMIZE) $(DEBUG) $(OPTIONS) $(CODE_TYPE) $(INCLUDES)
@ -708,7 +708,7 @@ clean:
realclean:
$(MAKE) clean
-$(DELETE) lib small_data large_data
-$(DELETE) lib small_data large_data large_data_softfloat
##############################################################################