Initial prototype
[dups.git] / Makefile
1 TARGET := dupfiles.native
2
3 .PHONY: all build clean run
4
5 all:
6 @$(MAKE) -s clean
7 @$(MAKE) -s build
8
9 build:
10 @ocamlbuild -cflags '-w A' $(TARGET)
11
12 clean:
13 @ocamlbuild -clean
14
15 run:
16 @find ~ -type f | egrep -v '/.git/' | ./$(TARGET)
This page took 0.043827 seconds and 4 git commands to generate.