summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 42bb252a39ae0b8eff4d5b8abc8f1e09d2fed808 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
MOD=ricketyspace.net/cryptopals

build: fmt
	go build
.PHONY: build

fmt:
	go fmt ${MOD} ${MOD}/challenge ${MOD}/lib
.PHONY: fmt

test:
	go test ${ARGS} ${MOD}/lib
.PHONY: test

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