summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 2abddd34ce911d24333ffaa9bed91ad040d28aa2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
MOD=ricketyspace.net/cryptopals

build: fmt
	go build

fmt:
	go fmt -x ${MOD} ${MOD}/challenge ${MOD}/lib

clean:
	go clean
	rm -f *~ ./*/*~
.PHONY: clean