d79ad631b969a9b2ca03443bb42a265429eec47f
[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.034475 seconds and 3 git commands to generate.