summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-01-23 18:02:39 +0000
committerEric Andersen <andersen@codepoet.org>2001-01-23 18:02:39 +0000
commit2af5d78a2f71f124d8da83ca144caa276b3ad500 (patch)
tree3c16a5a7e5b7a23f6b895e48ca9c257f9ac3ec2e /test
parentc6464c0a9e1c70dd82d815ab7ccb6c5439804910 (diff)
Oops. Should be LDFLAGS, not CFLAGS twice
Diffstat (limited to 'test')
-rw-r--r--test/assert/Makefile2
-rw-r--r--test/ctype/Makefile2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/assert/Makefile b/test/assert/Makefile
index 6d71595b9..96999bccd 100644
--- a/test/assert/Makefile
+++ b/test/assert/Makefile
@@ -11,7 +11,7 @@ assert: assert.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak $(TESTCC)
-@ echo "Compiling vs uClibc: "
-@ echo " "
$(TESTCC) $(CFLAGS) -c $< -o $@.o
- $(TESTCC) $(CFLAGS) $@.o -o $@ $(EXTRA_LIBS)
+ $(TESTCC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)
$(STRIPTOOL) -x -R .note -R .comment $@
-./$@
-@ echo " "
diff --git a/test/ctype/Makefile b/test/ctype/Makefile
index 02d60e1c9..4f7db6e44 100644
--- a/test/ctype/Makefile
+++ b/test/ctype/Makefile
@@ -10,7 +10,7 @@ ctype: ctype.c ../testsuite.h Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak $(
-@ echo "Compiling vs uClibc: "
-@ echo " "
$(TESTCC) $(CFLAGS) -c $< -o $@.o
- $(TESTCC) $(CFLAGS) $@.o -o $@ $(EXTRA_LIBS)
+ $(TESTCC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)
$(STRIPTOOL) -x -R .note -R .comment $@
./$@
-@ echo " "