aboutsummaryrefslogtreecommitdiffstats
path: root/tests/Makefile
diff options
context:
space:
mode:
authorbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2003-03-29 16:44:42 +0000
committerbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2003-03-29 16:44:42 +0000
commitc3c7c29246a03afda6eb4c777b0f5d125e80669c (patch)
tree33cb17b5312f0b82e3c82afd456b70f9bea608ad /tests/Makefile
parent31bb950be6d1f144d349d9793c88fbb28ca5fb58 (diff)
added runcom
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@50 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'tests/Makefile')
-rw-r--r--tests/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/Makefile b/tests/Makefile
index 0d0fb9b95..14521fad6 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -4,7 +4,7 @@ CFLAGS=-Wall -O2 -g
LDFLAGS=
ifeq ($(ARCH),i386)
-TESTS=testclone testsig testthread sha1-i386 test-i386
+TESTS=testclone testsig testthread sha1-i386 test-i386 runcom
endif
TESTS+=sha1
@@ -48,5 +48,9 @@ speed: sha1 sha1-i386
time ./sha1
time $(QEMU) ./sha1-i386
+# vm86 test
+runcom: runcom.c
+ $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $<
+
clean:
rm -f *~ *.o $(TESTS)