1
0
mirror of https://github.com/golang/go synced 2024-10-04 09:31:22 -06:00
go/src/Makefile

17 lines
272 B
Makefile
Raw Normal View History

# GNU Make syntax:
nullstring :=
space := $(nullstring) # a space at the end
QUOTED_GOROOT=$(subst $(space),\ ,$(GOROOT))
all: build run
build:
bash $(QUOTED_GOROOT)/src/make.bash
run:
bash $(QUOTED_GOROOT)/src/run.bash
clean:
bash $(QUOTED_GOROOT)/src/clean.bash