aboutsummaryrefslogtreecommitdiff
path: root/tests/Makefile
diff options
context:
space:
mode:
authorbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2003-06-15 19:37:07 +0000
committerbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2003-06-15 19:37:07 +0000
commit394411ac7442f6c3803b7f60379697b750b2ab3f (patch)
treee06dcc176b56a44759472b99bb69fe60de4ceef4 /tests/Makefile
parentea76864009c3d7458b466123ae7cf10daafde53b (diff)
added hello world for ARM
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@231 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'tests/Makefile')
-rw-r--r--tests/Makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/Makefile b/tests/Makefile
index 4b58c197ef..364e397306 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -59,5 +59,12 @@ speed: sha1 sha1-i386
runcom: runcom.c
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $<
+# arm test
+hello-arm: hello-arm.o
+ arm-linux-ld -o $@ $<
+
+hello-arm.o: hello-arm.c
+ arm-linux-gcc -Wall -g -O2 -c -o $@ $<
+
clean:
rm -f *~ *.o $(TESTS)