diff options
author | Rob Pike <r@golang.org> | 2008-10-14 19:22:17 -0700 |
---|---|---|
committer | Rob Pike <r@golang.org> | 2008-10-14 19:22:17 -0700 |
commit | e1033402ca1125d3517e79f1dbabae9b763ec90c (patch) | |
tree | f06f7331ad0775154f3e460e2785d9ad897120e1 /usr/r/regexp/Makefile | |
parent | e36cd17c697c44d238ae9bd15dfafda2b8a4d209 (diff) | |
download | golang-e1033402ca1125d3517e79f1dbabae9b763ec90c.tar.gz |
move regexp to lib
next cl will update names and add to build
R=rsc
DELTA=1876 (938 added, 938 deleted, 0 changed)
OCL=17149
CL=17166
Diffstat (limited to 'usr/r/regexp/Makefile')
-rw-r--r-- | usr/r/regexp/Makefile | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/usr/r/regexp/Makefile b/usr/r/regexp/Makefile deleted file mode 100644 index ac466a0f1..000000000 --- a/usr/r/regexp/Makefile +++ /dev/null @@ -1,20 +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. - -A=6 -G=$(A)g -L=$(A)l - -all: main - -main: main.6 - $L -o main main.6 - -main.6: regexp.6 - -clean: - rm -f *.6 main - -%.6: %.go - $G $< |