github.com/epfl-dcsl/gotee@v0.0.0-20200909122901-014b35f5e5e9/example/hello-world/Makefile (about) 1 all: comp 2 3 comp: 4 $(shell GOPATH=${GOPATH}:`pwd` gotee build src/main.go) 5 @echo "Done compiling" 6 7 .PHONY: run 8 9 run: 10 GOMAXPROCS=1 ./main 11 12 13 experiment: 14 $(MAKE) comp 15 $(MAKE) run 16 17 .PHONY: clean 18 19 clean: 20 rm -f main enclavebin