diff options
Diffstat (limited to 'tests/Makefile')
-rw-r--r-- | tests/Makefile | 7 |
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) |