diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2003-03-22 15:20:50 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2003-03-22 15:20:50 +0000 |
commit | e591824733ec698d92d1f09c2ffb9b86b799d6da (patch) | |
tree | dbac3b6ec25f2df4c6b3a49d5eeb0396433b7267 /tests/Makefile | |
parent | 04369ff2f525ea510b6ddeaa2e3ed6aedde8bbb4 (diff) | |
download | qemu-e591824733ec698d92d1f09c2ffb9b86b799d6da.tar.gz qemu-e591824733ec698d92d1f09c2ffb9b86b799d6da.tar.bz2 qemu-e591824733ec698d92d1f09c2ffb9b86b799d6da.zip |
added code16 tests
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@37 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'tests/Makefile')
-rw-r--r-- | tests/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/Makefile b/tests/Makefile index 72b559dfd5..3cc205d5b2 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -20,8 +20,9 @@ test2: test2.c $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< # i386 emulation test (test various opcodes) */ -test-i386: test-i386.c test-i386.h test-i386-shift.h test-i386-muldiv.h - $(CC) $(CFLAGS) $(LDFLAGS) -static -o $@ $< -lm +test-i386: test-i386.c test-i386-code16.S \ + test-i386.h test-i386-shift.h test-i386-muldiv.h + $(CC) $(CFLAGS) $(LDFLAGS) -static -o $@ test-i386.c test-i386-code16.S -lm test: test-i386 ifeq ($(ARCH),i386) |