summaryrefslogtreecommitdiffstats
path: root/libdpf/Makefile
diff options
context:
space:
mode:
authorJames <git@panaceas.org>2014-05-05 17:50:20 +0100
committerJames <git@panaceas.org>2014-05-05 17:50:20 +0100
commit470457e22a1b5537013603d5e367c51e47bb61bf (patch)
tree6b72d32bfd9eaec31c8c520d18782ccaebc01759 /libdpf/Makefile
downloadkmd_usb-470457e22a1b5537013603d5e367c51e47bb61bf.tar.gz
kmd_usb-470457e22a1b5537013603d5e367c51e47bb61bf.tar.bz2
kmd_usb-470457e22a1b5537013603d5e367c51e47bb61bf.zip
fish
Diffstat (limited to 'libdpf/Makefile')
-rw-r--r--libdpf/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/libdpf/Makefile b/libdpf/Makefile
new file mode 100644
index 0000000..3c39ac5
--- /dev/null
+++ b/libdpf/Makefile
@@ -0,0 +1,12 @@
+OBJS = dpflib.o rawusb.o scsi.o bootload.o
+
+CFLAGS = -Wall -fPIC -I. -g
+# CFLAGS += -DDEBUG
+
+all: libdpf.a
+
+libdpf.a: $(OBJS)
+ ar ruv $@ $(OBJS)
+
+clean:
+ -rm -f libdpf.a *.o