added an arm/linux based loader/tester for arm/pe files

committer: ml1050 <ml1050> 1145605029 +0000
This commit is contained in:
László Molnár
2006-04-21 07:37:09 +00:00
parent 4f2d1172dd
commit 76734f086d
4 changed files with 321 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
# Makefile for armpe_tester
SHELL = /bin/sh
all: armpe_tester
armpe_tester: armpe_tester.c
arm-9tdmi-linux-gnu-gcc -Wl,--section-start,.interp=0x1000 -g -Wall -W -o $@ $<
mostlyclean clean distclean maintainer-clean:
rm -f *.d *.o *.obj
rm -f armpe_tester
.PHONY: all mostlyclean clean distclean maintainer-clean