diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-07-03 06:45:58 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-07-03 06:45:58 +0000 |
commit | f9158d441880222b1ba287947ebc863785bf557c (patch) | |
tree | 39cceddbe7fc1457a8224a3b4270db1099d1a991 /test/silly | |
parent | 4836768df76d3919451aa9f847182c8f5f4068e7 (diff) | |
download | uClibc-alpine-f9158d441880222b1ba287947ebc863785bf557c.tar.bz2 uClibc-alpine-f9158d441880222b1ba287947ebc863785bf557c.tar.xz |
Scrub up the tests a bit, and force everybody to use the
build dir, so nothing need be installed...
-Erik
Diffstat (limited to 'test/silly')
-rw-r--r-- | test/silly/Makefile | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/test/silly/Makefile b/test/silly/Makefile index 8431fd412..e94d67515 100644 --- a/test/silly/Makefile +++ b/test/silly/Makefile @@ -15,16 +15,16 @@ hello_source: -@ cat hello.c -@ echo " " -hello: hello.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak $(TESTCC) +hello: hello.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak $(CC) -@ echo "-------" -@ echo " " -@ echo "Compiling vs uClibc: " -@ echo " " - $(TESTCC) $(TEST_CFLAGS) -c $< -o $@.o - $(TESTCC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS) + $(CC) $(CFLAGS) -c $< -o $@.o + $(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS) $(STRIPTOOL) -x -R .note -R .comment $@ -ldd $@ - ls $(LSFLAGS) $@ + ls -l $@ -./$@ -@ echo " " @@ -33,11 +33,11 @@ hello_glibc: hello.c Makefile -@ echo " " -@ echo "Compiling vs GNU libc: " -@ echo " " - $(CC) $(CFLAGS) -c $< -o $@.o - $(CC) $(LDFLAGS) $@.o -o $@ + $(HOST_CC) $(GLIBC_CFLAGS) -c $< -o $@.o + $(HOST_CC) $(GLIBC_LDFLAGS) $@.o -o $@ $(STRIPTOOL) -x -R .note -R .comment $@ -ldd $@ - ls $(LSFLAGS) $@ + ls -l $@ -./$@ -@ echo " " |