Makefile gets the flick.

This commit is contained in:
Ian A. Mason 2018-02-05 16:36:09 -08:00
parent 727a32b7d0
commit c077d3cfc8
2 changed files with 6 additions and 20 deletions

View File

@ -1,20 +0,0 @@
GOROOT := $(shell go env GOPATH)
build:
go build ./cmd/...
install: build
go install ./cmd/...
clean:
go clean
fmt:
gofmt -s -w shared/*.go cmd/*/*.go
uninstall:
rm -f $(GOROOT)/bin/gclang
rm -f $(GOROOT)/bin/gclang++
rm -f $(GOROOT)/bin/get-bc
rm -f $(GOROOT)/bin/gsanity-check

View File

@ -5,3 +5,9 @@ To edit the code locally use the repository here:
Then do: Then do:
go install -a github.com/SRI-CSL/gllvm/cmd/... go install -a github.com/SRI-CSL/gllvm/cmd/...
To format for the badge:
gofmt -s -w shared/*.go cmd/*/*.go