diff options
| author | Dave Chapman <dave@dchapman.com> | 2009-07-13 18:31:42 +0000 |
|---|---|---|
| committer | Dave Chapman <dave@dchapman.com> | 2009-07-13 18:31:42 +0000 |
| commit | af624e03c0d85070ba2f4c813561af8e8ea145fb (patch) | |
| tree | ed135a0345d68d7b5c06cdc0f84710f64c8d8c66 /utils/ipod/bin2note/Makefile | |
| parent | 5e2f11ad655051296b64af86b33a8bbb0229272b (diff) | |
| download | rockbox-af624e03c0d85070ba2f4c813561af8e8ea145fb.zip rockbox-af624e03c0d85070ba2f4c813561af8e8ea145fb.tar.gz rockbox-af624e03c0d85070ba2f4c813561af8e8ea145fb.tar.bz2 rockbox-af624e03c0d85070ba2f4c813561af8e8ea145fb.tar.xz | |
First commit of "bin2note" utility for exploiting the Notes buffer overflow on the 2nd generation Nano.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21842 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'utils/ipod/bin2note/Makefile')
| -rw-r--r-- | utils/ipod/bin2note/Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/utils/ipod/bin2note/Makefile b/utils/ipod/bin2note/Makefile new file mode 100644 index 0000000..b5fd564 --- /dev/null +++ b/utils/ipod/bin2note/Makefile @@ -0,0 +1,16 @@ +# __________ __ ___. +# Open \______ \ ____ ____ | | _\_ |__ _______ ___ +# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / +# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < +# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ +# \/ \/ \/ \/ \/ +# $Id$ +# + +all: bin2note + +bin2note: bin2note.c + gcc -W -Wall -o bin2note bin2note.c + +clean: + rm -f bin2note |