summaryrefslogtreecommitdiffstats
path: root/libdpf/Makefile
diff options
context:
space:
mode:
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