summaryrefslogblamecommitdiffstats
path: root/Makefile
blob: 696d8c71a9016b5665ae68a80a5a49545f140404 (plain) (tree)
1
2
3
4
5
6
7
8

                               

                

    
                                                 
 



                       
MOD=ricketyspace.net/cryptopals

build: fmt
	go build

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

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