From 08eda65a3991784729bd77d0d463ec108fda414c Mon Sep 17 00:00:00 2001 From: Fumitoshi Ukai Date: Thu, 25 Jun 2015 16:27:10 +0900 Subject: unexport Makefile, Parser and EvalResult --- bootstrap.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bootstrap.go') 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) } -- cgit v1.2.3