diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-01-23 16:28:10 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-01-23 16:28:10 +0000 |
commit | 545e51be154967ab3e8d82fff5f7c25487076e72 (patch) | |
tree | 24cdc7527b6e430111c26b00fddf66fc3ad91178 /test/stdlib | |
parent | bce788f4dc069f977a8e55dd3d69f3fa4a498170 (diff) |
Update tests to be somewhat consistant with the rest of the world
Diffstat (limited to 'test/stdlib')
-rw-r--r-- | test/stdlib/Makefile | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/test/stdlib/Makefile b/test/stdlib/Makefile index 957d324b0..8747c2a37 100644 --- a/test/stdlib/Makefile +++ b/test/stdlib/Makefile @@ -54,8 +54,8 @@ teststrtol_glibc: teststrtol.c Makefile -@ echo " " -@ echo "Compiling vs GNU libc: " -@ echo " " - $(HOST_CC) $(GLIBC_CFLAGS) -c $< -o $@.o - $(HOST_CC) $(GLIBC_LDFLAGS) $@.o -o $@ + $(HOSTCC) $(GLIBC_CFLAGS) -c $< -o $@.o + $(HOSTCC) $(GLIBC_LDFLAGS) $@.o -o $@ $(STRIPTOOL) -x -R .note -R .comment $@ -$(LDD) $@ ls -l $@ @@ -88,8 +88,8 @@ qsort_glibc: qsort.c Makefile -@ echo " " -@ echo "Compiling vs GNU libc: " -@ echo " " - $(HOST_CC) $(GLIBC_CFLAGS) -c $< -o $@.o - $(HOST_CC) $(GLIBC_LDFLAGS) $@.o -o $@ + $(HOSTCC) $(GLIBC_CFLAGS) -c $< -o $@.o + $(HOSTCC) $(GLIBC_LDFLAGS) $@.o -o $@ $(STRIPTOOL) -x -R .note -R .comment $@ -$(LDD) $@ ls -l $@ @@ -122,8 +122,8 @@ teston_exit_glibc: teston_exit.c Makefile -@ echo " " -@ echo "Compiling vs GNU libc: " -@ echo " " - $(HOST_CC) $(GLIBC_CFLAGS) -c $< -o $@.o - $(HOST_CC) $(GLIBC_LDFLAGS) $@.o -o $@ + $(HOSTCC) $(GLIBC_CFLAGS) -c $< -o $@.o + $(HOSTCC) $(GLIBC_LDFLAGS) $@.o -o $@ $(STRIPTOOL) -x -R .note -R .comment $@ -$(LDD) $@ ls -l $@ @@ -156,8 +156,8 @@ testatexit_glibc: testatexit.c Makefile -@ echo " " -@ echo "Compiling vs GNU libc: " -@ echo " " - $(HOST_CC) $(GLIBC_CFLAGS) -c $< -o $@.o - $(HOST_CC) $(GLIBC_LDFLAGS) $@.o -o $@ + $(HOSTCC) $(GLIBC_CFLAGS) -c $< -o $@.o + $(HOSTCC) $(GLIBC_LDFLAGS) $@.o -o $@ $(STRIPTOOL) -x -R .note -R .comment $@ -$(LDD) $@ ls -l $@ |