blob: e2230029864726a0dee0ad936d99b9c99becd444 [file]
# Copyright 2009 The Go Authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
include $(GOROOT)/src/Make.$(GOARCH)
TARG=ebnflint
OFILES=\
ebnflint.$O\
$(TARG): $(OFILES)
$(LD) -o $(TARG) $(OFILES)
test: $(TARG)
$(TARG) -start="SourceFile" $(GOROOT)/doc/go_spec.html
clean:
rm -f $(OFILES) $(TARG)
install: $(TARG)
cp $(TARG) $(HOME)/bin/$(TARG)
%.$O: %.go
$(GC) $<