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

- Added a simple test for sprintf() which does not use any of the

normal library startup code.


git-svn-id: file:///Users/olsen/Code/migration-svn-zu-git/logical-line-staging/clib2/trunk@14952 87f5fb63-7c3d-0410-a384-fd976d0f7a62
This commit is contained in:
Olaf Barthel
2005-05-17 19:15:32 +00:00
parent a1ffc20864
commit df05c80c57
4 changed files with 131 additions and 15 deletions

View File

@ -1,5 +1,5 @@
#
# $Id: smakefile,v 1.6 2005-05-08 16:27:25 obarthel Exp $
# $Id: smakefile,v 1.7 2005-05-17 19:15:32 obarthel Exp $
#
# :ts=8
#
@ -66,11 +66,15 @@ AFLAGS = \
all: \
setup \
test fgets_test iotest sscanf_test printf_test sprintf_test \
stack_size_test translate_test strtok_test uname simple fstat_stdout_test \
stack_size_test translate_test strtok_test uname simple \
fstat_stdout_test simple_sprintf \
cleanup
clean:
-delete \#?.o \#?.map test fgets_test iotest sscanf_test printf_test sprintf_test stack_size_test translate_test strtok_test uname simple
-delete \#?.o \#?.map \
test fgets_test iotest sscanf_test printf_test sprintf_test \
stack_size_test translate_test strtok_test uname simple \
simple_sprintf
##############################################################################
@ -144,6 +148,11 @@ fstat_stdout_test: fstat_stdout_test.o
@slink $(LIB)startup.o fstat_stdout_test.o to $@ lib $(LIB)c.lib addsym \
map $@.map,fhx fwidth 32 pwidth 32 swidth 32
simple_sprintf: simple_sprintf.o
@echo "Linking $@"
@slink simple_sprintf.o to $@ lib $(LIB)c.lib addsym \
map $@.map,fhx fwidth 32 pwidth 32 swidth 32
##############################################################################
mkid: