summaryrefslogtreecommitdiff
path: root/utils/e200tool/Makefile
diff options
context:
space:
mode:
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