Lines Matching defs:makefile
37 type makefile struct {
50 mk makefile
623 func (p *parser) parse() (mk makefile, err error) {
632 return makefile{}, p.err
647 return makefile{}, p.err
730 candidates := []string{"GNUmakefile", "makefile", "Makefile"}
736 return "", errors.New("no targets specified and no makefile found")
739 func parseMakefileReader(rd io.Reader, loc srcpos) (makefile, error) {
747 func parseMakefileString(s string, loc srcpos) (makefile, error) {
751 func parseMakefileBytes(s []byte, loc srcpos) (makefile, error) {
756 mk makefile
771 func (mc *makefileCacheT) lookup(filename string) (makefile, [sha1.Size]byte, bool, error) {
777 return makefile{}, hash, false, nil
781 return makefile{}, hash, false, nil
786 func (mc *makefileCacheT) parse(filename string) (makefile, [sha1.Size]byte, error) {
787 glog.Infof("parse Makefile %q", filename)
791 glog.Infof("makefile cache hit for %q", filename)
796 glog.Infof("reading makefile %q", filename)
800 return makefile{}, hash, err
805 return makefile{}, hash, err
818 func parseMakefile(s []byte, filename string) (makefile, error) {