mirror of
https://github.com/golang/go.git
synced 2025-05-26 01:41:25 +00:00
- implemented elastic tabstops algorithm, now correct and documented - first cut at printing comments (use -comments flag, disabled for now) - struct field types are now aligned (using elastic tab stops) - needs more fine-tuning * fixed a bug in test script * added quick smoke test to makefile and invoke it in run.bash instead of the full test R=r OCL=19220 CL=19220
39 lines
597 B
Makefile
39 lines
597 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
|
|
|
|
smoketest: pretty
|
|
./test.sh parser.go
|
|
|
|
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) $<
|