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