summaryrefslogtreecommitdiff
path: root/tests/test-progs/hello/src/Makefile.arm
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test-progs/hello/src/Makefile.arm')
-rw-r--r--tests/test-progs/hello/src/Makefile.arm26
1 files changed, 26 insertions, 0 deletions
diff --git a/tests/test-progs/hello/src/Makefile.arm b/tests/test-progs/hello/src/Makefile.arm
new file mode 100644
index 000000000..2aad6f555
--- /dev/null
+++ b/tests/test-progs/hello/src/Makefile.arm
@@ -0,0 +1,26 @@
+SERVER_USER=
+SERVER_PATH=/z/www/htdocs/dist/current/test-progs/hello/bin/arm/linux
+FETCH_PATH=http://gem5.org/dist/current/test-progs/hello/bin/arm/linux
+UPLOAD_LOCATION=$(SERVER_USER)daystrom.gem5.org:$(SERVER_PATH)
+
+all: hello64-static hello32-static
+
+upload: hello64-static hello32-static
+ scp hello64-static hello32-static $(UPLOAD_LOCATION)
+
+hello64-static: hello.c dockcross-arm64
+ ./dockcross-arm64 bash -c '$$CC hello.c -o hello64-static -static'
+
+hello32-static: hello.c dockcross-armv7
+ ./dockcross-armv7 bash -c '$$CC hello.c -o hello32-static -static'
+
+dockcross-arm64:
+ docker run --rm dockcross/linux-arm64 > ./dockcross-arm64
+ chmod +x ./dockcross-arm64
+
+dockcross-armv7:
+ docker run --rm dockcross/linux-armv7 > ./dockcross-armv7
+ chmod +x ./dockcross-armv7
+
+clean:
+ rm -f dockcross* hello64-static hello32-static