summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: f6f8784cf5d44683f0330753e9ebdb5ed6d4a1c4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
MOD=ricketyspace.net/cryptopals
PKGS=${MOD} ${MOD}/challenge ${MOD}/lib

build: fmt
	go build
.PHONY: build

fmt:
	go fmt ${PKGS}
.PHONY: fmt

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

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