diff options
| author | Marcin Bukat <marcin.bukat@gmail.com> | 2014-08-07 19:09:35 +0200 |
|---|---|---|
| committer | Marcin Bukat <marcin.bukat@gmail.com> | 2014-08-07 19:09:35 +0200 |
| commit | 53d9f2e6a7564e487bdac87f6e28c662e8407458 (patch) | |
| tree | 7c2f3c40414d568b3623a6817a65d0188bbec9d5 /utils/rk27utils/rkwtool/Makefile | |
| parent | 81ffd9bfeee6aca65f507a46c8123b47ca6e2803 (diff) | |
| download | rockbox-53d9f2e6a7564e487bdac87f6e28c662e8407458.zip rockbox-53d9f2e6a7564e487bdac87f6e28c662e8407458.tar.gz rockbox-53d9f2e6a7564e487bdac87f6e28c662e8407458.tar.bz2 rockbox-53d9f2e6a7564e487bdac87f6e28c662e8407458.tar.xz | |
rkwtool: The tool to inspect and extract update RKW files
Change-Id: Ie32d0a597b93d23a7d5946a3d9409572b41b45bc
Diffstat (limited to 'utils/rk27utils/rkwtool/Makefile')
| -rw-r--r-- | utils/rk27utils/rkwtool/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/utils/rk27utils/rkwtool/Makefile b/utils/rk27utils/rkwtool/Makefile new file mode 100644 index 0000000..239733c --- /dev/null +++ b/utils/rk27utils/rkwtool/Makefile @@ -0,0 +1,7 @@ +all: rkwtool + +rkwtool: rkw.c main.c + gcc -g -std=c99 -o $@ -W -Wall $^ + +clean: + rm -fr rkwtool |