diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2003-03-05 20:57:02 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2003-03-05 20:57:02 +0000 |
commit | 9d8e9c09932455a21c57559925def82361b23a09 (patch) | |
tree | cbadd68a93c09fa787e4b5be7b750357cabc0ff0 /tests/Makefile | |
parent | d57c4e01206ebc8b21702c243e7a19638f783b43 (diff) | |
download | qemu-9d8e9c09932455a21c57559925def82361b23a09.tar.gz qemu-9d8e9c09932455a21c57559925def82361b23a09.tar.bz2 qemu-9d8e9c09932455a21c57559925def82361b23a09.zip |
bsx/float tests
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@21 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'tests/Makefile')
-rw-r--r-- | tests/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Makefile b/tests/Makefile index 30022b19aa..7decbf5426 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -13,14 +13,14 @@ hello: hello.c $(CC) -nostdlib $(CFLAGS) -static $(LDFLAGS) -o $@ $< test1: test1.c - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< + $(CC) $(CFLAGS) -static $(LDFLAGS) -o $@ $< test2: test2.c $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< # i386 emulation test (dump various opcodes) */ test-i386: test-i386.c test-i386.h test-i386-shift.h test-i386-muldiv.h - $(CC) $(CFLAGS) $(LDFLAGS) -static -o $@ $< + $(CC) $(CFLAGS) $(LDFLAGS) -static -o $@ $< -lm test: test-i386 ./test-i386 > test-i386.ref |