Implement recursive directory walk stream
[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:
948ee900 10 @ocamlbuild -cflags '-w A' -pkg 'unix' $(TARGET)
cce97c27
SK
11
12clean:
13 @ocamlbuild -clean
14
15run:
16 @find ~ -type f | egrep -v '/.git/' | ./$(TARGET)
This page took 0.017632 seconds and 4 git commands to generate.