diff options
Diffstat (limited to 'src/cmd/6l/Makefile')
-rw-r--r-- | src/cmd/6l/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cmd/6l/Makefile b/src/cmd/6l/Makefile index 7c15012a0..e87efafc9 100644 --- a/src/cmd/6l/Makefile +++ b/src/cmd/6l/Makefile @@ -2,7 +2,7 @@ # Use of this source code is governed by a BSD-style # license that can be found in the LICENSE file. -CFLAGS=-I/home/r/plan9/include -I$(GOROOT)/include +CFLAGS=-I$(GOROOT)/include BIN=$(HOME)/bin O=o @@ -25,7 +25,7 @@ HFILES=\ $(TARG): $(OFILES) - cc -o $(TARG) -L/home/r/plan9/lib $(OFILES) -lbio -l9 + cc -o $(TARG) -L$(GOROOT)/lib $(OFILES) -lbio -l9 $(OFILES): $(HFILES) |