aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap.go
diff options
context:
space:
mode:
Diffstat (limited to 'bootstrap.go')
-rw-r--r--bootstrap.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/bootstrap.go b/bootstrap.go
index de13b2b..30ca77d 100644
--- a/bootstrap.go
+++ b/bootstrap.go
@@ -22,7 +22,7 @@ import (
const bootstrapMakefileName = "*bootstrap*"
-func BootstrapMakefile(targets []string) Makefile {
+func bootstrapMakefile(targets []string) makefile {
bootstrap := `
CC:=cc
CXX:=g++
@@ -48,7 +48,7 @@ SHELL:=/bin/sh
panic(err)
}
bootstrap += fmt.Sprintf("CURDIR:=%s\n", cwd)
- mk, err := ParseMakefileString(bootstrap, bootstrapMakefileName, 0)
+ mk, err := parseMakefileString(bootstrap, bootstrapMakefileName, 0)
if err != nil {
panic(err)
}