Initial prototype
[dups.git] / Makefile
diff --git a/Makefile b/Makefile
new file mode 100644 (file)
index 0000000..d79ad63
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,16 @@
+TARGET := dupfiles.native
+
+.PHONY: all build clean run
+
+all:
+       @$(MAKE) -s clean
+       @$(MAKE) -s build
+
+build:
+       @ocamlbuild -cflags '-w A' $(TARGET)
+
+clean:
+       @ocamlbuild -clean
+
+run:
+       @find ~ -type f | egrep -v '/.git/' | ./$(TARGET)
This page took 0.020141 seconds and 4 git commands to generate.