diff options
author | Eric Andersen <andersen@codepoet.org> | 2000-11-15 21:12:09 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2000-11-15 21:12:09 +0000 |
commit | afa40ade775710f3a449e10778159ade4c133d45 (patch) | |
tree | dfcfb8d70f95e89273ee32d14c982c529c08a676 /test/string/Makefile | |
parent | dc7f2e1bf0dc6ab6bec1d531026fb39271287711 (diff) |
Add in tmpnam() support from David Whedon <dwhedon@gordian.com>,
rework include/stdio.h, and fix up the resultant damage.
Diffstat (limited to 'test/string/Makefile')
-rw-r--r-- | test/string/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/test/string/Makefile b/test/string/Makefile index a771f3638..bf847f66e 100644 --- a/test/string/Makefile +++ b/test/string/Makefile @@ -5,9 +5,12 @@ include $(TOPDIR)Rules.mak LSFLAGS = $(shell if ls -sh >/dev/null 2>&1; \ then echo "-sh"; else echo "-s" ; fi) -XCFLAGS = -Wall -Os -fomit-frame-pointer -fno-builtin -nostdinc \ +#XCFLAGS = -Wall -Os -fomit-frame-pointer -fno-builtin -nostdinc \ +# -I$(TOPDIR)include -I/usr/include/linux +#XLDFLAGS = -nostdlib -s -gc-sections +XCFLAGS = -Wall -g -fno-builtin -nostdinc \ -I$(TOPDIR)include -I/usr/include/linux -XLDFLAGS = -nostdlib -s -gc-sections +XLDFLAGS = -nostdlib -gc-sections EXTRA_LIBS=$(TOPDIR)libc.a -lgcc YCFLAGS = -Wall -Os -fomit-frame-pointer |