summaryrefslogtreecommitdiff
path: root/utils/e200tool/Makefile
diff options
context:
space:
mode:
authorAmaury Pouly <amaury.pouly@gmail.com>2014-04-07 22:25:06 +0200
committerAmaury Pouly <amaury.pouly@gmail.com>2014-04-07 22:25:06 +0200
commit399acc038750943c1a0ee7178a18714334871472 (patch)
tree343079cb893fe9b27d66455d0459536764b0865a /utils/e200tool/Makefile
parent68370b6eea8b5bed54e82a07086ad7c81cc966dd (diff)
downloadrockbox-399acc038750943c1a0ee7178a18714334871472.tar.gz
rockbox-399acc038750943c1a0ee7178a18714334871472.zip
Add new tool to upload code on e200/c200/view in manufacturer mode
This is actually the trivial part of e200tool from MrH: it simply writes the code on the bulk endpoint. Code was mostly copied from imxtools/sbloader. Change-Id: I6c208840d23553aaf3bd8b9374e6b0337e54f3b0
Diffstat (limited to 'utils/e200tool/Makefile')
-rw-r--r--utils/e200tool/Makefile21
1 files changed, 21 insertions, 0 deletions
diff --git a/utils/e200tool/Makefile b/utils/e200tool/Makefile
new file mode 100644
index 0000000000..63f82b9cdd
--- /dev/null
+++ b/utils/e200tool/Makefile
@@ -0,0 +1,21 @@
1DEFINES=
2CC=gcc
3LD=gcc
4CFLAGS=-O2 -g -std=c99 -W -Wall `pkg-config --cflags libusb-1.0` $(DEFINES)
5LDFLAGS=`pkg-config --libs libusb-1.0`
6BINS=e200load
7
8all: $(BINS)
9
10%.o: %.c
11 $(CC) $(CFLAGS) -c -o $@ $<
12
13e200load: e200load.o
14 $(LD) -o $@ $^ $(LDFLAGS)
15
16clean:
17 rm -fr *.o
18
19veryclean:
20 rm -rf $(BINS)
21