mirror of
https://github.com/golang/go
synced 2024-11-12 09:20:22 -07:00
eba73552d2
(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
36 lines
557 B
Makefile
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) $<
|