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

- Added the "date_test" program.

git-svn-id: file:///Users/olsen/Code/migration-svn-zu-git/logical-line-staging/clib2/trunk@15019 87f5fb63-7c3d-0410-a384-fd976d0f7a62
This commit is contained in:
Olaf Barthel
2005-08-26 12:21:51 +00:00
parent eb10d40332
commit 5acfef419b
5 changed files with 46 additions and 11 deletions

View File

@ -1,5 +1,5 @@
#
# $Id: smakefile,v 1.7 2005-05-17 19:15:32 obarthel Exp $
# $Id: smakefile,v 1.8 2005-08-26 12:21:51 obarthel Exp $
#
# :ts=8
#
@ -67,14 +67,14 @@ all: \
setup \
test fgets_test iotest sscanf_test printf_test sprintf_test \
stack_size_test translate_test strtok_test uname simple \
fstat_stdout_test simple_sprintf \
fstat_stdout_test simple_sprintf date_test \
cleanup
clean:
-delete \#?.o \#?.map \
test fgets_test iotest sscanf_test printf_test sprintf_test \
stack_size_test translate_test strtok_test uname simple \
simple_sprintf
simple_sprintf date_test
##############################################################################
@ -93,6 +93,11 @@ test: test.o
@slink $(LIB)startup.o test.o to $@ lib $(LIB)c.lib addsym \
map $@.map,fhx fwidth 32 pwidth 32 swidth 32
date_test: date_test.o
@echo "Linking $@"
@slink $(LIB)startup.o date_test.o to $@ lib $(LIB)c.lib addsym \
map $@.map,fhx fwidth 32 pwidth 32 swidth 32
fgets_test: fgets_test.o
@echo "Linking $@"
@slink $(LIB)startup.o fgets_test.o to $@ lib $(LIB)c.lib addsym \