1
0
mirror of https://github.com/golang/go synced 2024-10-04 08:21:22 -06:00
go/usr/gri/pretty/Makefile
Robert Griesemer eba73552d2 - added simple facility to print Makefile dependency rules given a Go source file
(e.g.: pretty -d pretty.go will print the Makefile dep. rules of the involved
  Go files that are not part of the installed library)
- minor fix in pretty printer (tested against ken's test files)

R=r
OCL=17872
CL=17872
2008-10-26 21:32:30 -07:00

36 lines
557 B
Makefile

# 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.
G=6g
L=6l
pretty: pretty.6
$(L) -o pretty pretty.6
test: pretty
./test.sh
install: pretty
cp pretty $(HOME)/bin/pretty
clean:
rm -f pretty *.6 *~
pretty.6: platform.6 printer.6 compilation.6
compilation.6: platform.6 scanner.6 parser.6 ast.6
ast.6: scanner.6
scanner.6: utils.6
parser.6: scanner.6 ast.6
platform.6: utils.6
printer.6: scanner.6 ast.6
%.6: %.go
$(G) $(F) $<