summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 696d8c71a9016b5665ae68a80a5a49545f140404 (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 ${MOD} ${MOD}/challenge ${MOD}/lib

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