diff options
Diffstat (limited to 'misc/Makefile')
-rw-r--r-- | misc/Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/misc/Makefile b/misc/Makefile new file mode 100644 index 0000000..a087b0b --- /dev/null +++ b/misc/Makefile @@ -0,0 +1,16 @@ + +BINARIES=elf2diff1 elf2diff2 hole + +all: $(BINARIES) + +hole: hole.cpp + g++ -o $@ $< + +elf2diff1: elf2diff.c + arm-linux-gnueabi-gcc -o $@ -DNUMBER=1 $< + +elf2diff2: elf2diff.c + arm-linux-gnueabi-gcc -o $@ -DNUMBER=2 $< + +clean: + rm -f $(BINARIES) *~ |