summaryrefslogtreecommitdiff
path: root/utils/sbinfo/Makefile
diff options
context:
space:
mode:
authorBertrik Sikken <bertrik@sikken.nl>2010-11-28 10:53:01 +0000
committerBertrik Sikken <bertrik@sikken.nl>2010-11-28 10:53:01 +0000
commitc412c2dcad160de6d2efbd531fc71fe61ce1f1f7 (patch)
tree621185394f1512f68ed731da2db6e6b6e4293ffe /utils/sbinfo/Makefile
parent10e0279afcd10ec8ed3bac88e942e8c431947354 (diff)
downloadrockbox-c412c2dcad160de6d2efbd531fc71fe61ce1f1f7.tar.gz
rockbox-c412c2dcad160de6d2efbd531fc71fe61ce1f1f7.zip
Initial version of sbinfo, a utility to analyse .sb files (used for the fuze+ for example)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28691 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'utils/sbinfo/Makefile')
-rw-r--r--utils/sbinfo/Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/utils/sbinfo/Makefile b/utils/sbinfo/Makefile
new file mode 100644
index 0000000000..811249e924
--- /dev/null
+++ b/utils/sbinfo/Makefile
@@ -0,0 +1,9 @@
1TGT = sbinfo
2
3all: $(TGT)
4
5$(TGT): sbinfo.c
6 $(CC) -ansi -o $(TGT) -W -Wall sbinfo.c
7
8clean:
9 rm -fr $(TGT)