diff options
| author | Bertrik Sikken <bertrik@sikken.nl> | 2010-11-28 10:53:01 +0000 |
|---|---|---|
| committer | Bertrik Sikken <bertrik@sikken.nl> | 2010-11-28 10:53:01 +0000 |
| commit | c412c2dcad160de6d2efbd531fc71fe61ce1f1f7 (patch) | |
| tree | 621185394f1512f68ed731da2db6e6b6e4293ffe /utils/sbinfo/Makefile | |
| parent | 10e0279afcd10ec8ed3bac88e942e8c431947354 (diff) | |
| download | rockbox-c412c2dcad160de6d2efbd531fc71fe61ce1f1f7.zip rockbox-c412c2dcad160de6d2efbd531fc71fe61ce1f1f7.tar.gz rockbox-c412c2dcad160de6d2efbd531fc71fe61ce1f1f7.tar.bz2 rockbox-c412c2dcad160de6d2efbd531fc71fe61ce1f1f7.tar.xz | |
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/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/utils/sbinfo/Makefile b/utils/sbinfo/Makefile new file mode 100644 index 0000000..811249e --- /dev/null +++ b/utils/sbinfo/Makefile @@ -0,0 +1,9 @@ +TGT = sbinfo + +all: $(TGT) + +$(TGT): sbinfo.c + $(CC) -ansi -o $(TGT) -W -Wall sbinfo.c + +clean: + rm -fr $(TGT) |