From 89a881dce45b305f5584062e13ed3f3f847683c3 Mon Sep 17 00:00:00 2001 From: Robert Griesemer Date: Thu, 24 Sep 2009 13:17:09 -0700 Subject: [PATCH] delete obsolete Makefile TBR=rsc OCL=34978 CL=34978 --- usr/gri/pretty/Makefile | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 usr/gri/pretty/Makefile diff --git a/usr/gri/pretty/Makefile b/usr/gri/pretty/Makefile deleted file mode 100644 index 2b323c8a59d..00000000000 --- a/usr/gri/pretty/Makefile +++ /dev/null @@ -1,30 +0,0 @@ -# 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.conf -include $(GOROOT)/src/Make.$(GOARCH) - -all: godoc gofmt - -godoc: godoc.$O - $(LD) -o godoc godoc.$O - -gofmt: gofmt.$O - $(LD) -o gofmt gofmt.$O - -test: gofmt - ./test.sh - -smoketest: gofmt - ./test.sh $(GOROOT)/src/pkg/go/printer/printer.go - -install: pretty godoc untab - cp godoc $(GOBIN)/godoc - cp gofmt $(GOBIN)/gofmt - -clean: - rm -f godoc gofmt *.$O *.a 6.out *~ - -%.$O: %.go - $(GC) $(F) $<