mirror of
https://github.com/golang/go
synced 2024-11-26 05:48:05 -07:00
12 lines
128 B
Makefile
12 lines
128 B
Makefile
|
all: build run
|
||
|
|
||
|
build:
|
||
|
bash $(GOROOT)/src/make.bash
|
||
|
|
||
|
run:
|
||
|
bash $(GOROOT)/src/run.bash
|
||
|
|
||
|
clean:
|
||
|
bash $(GOROOT)/src/clean.bash
|
||
|
|