summaryrefslogtreecommitdiff
path: root/src/syscall
diff options
context:
space:
mode:
authorRob Pike <r@golang.org>2008-09-05 09:55:33 -0700
committerRob Pike <r@golang.org>2008-09-05 09:55:33 -0700
commit92aa4a15214a705cd0bec198ea8e160cd34ff8dd (patch)
tree6ed5ea950c948b69e0f014816325f5a78e95d27e /src/syscall
parent71ef59bd740c8c061c1a315b938b364a7bdbf1e9 (diff)
downloadgo-92aa4a15214a705cd0bec198ea8e160cd34ff8dd.tar.gz
use a makefile to build math
fix a typo in syscall/Makefile R=ken OCL=14863 CL=14863
Diffstat (limited to 'src/syscall')
-rw-r--r--src/syscall/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/syscall/Makefile b/src/syscall/Makefile
index 7013eeee1..468909a10 100644
--- a/src/syscall/Makefile
+++ b/src/syscall/Makefile
@@ -18,13 +18,13 @@ OFILES=\
install: $(PKG)
- cp $(PKG) $(GOROOT)/pkg
+ cp $(PKG) $(GOROOT)/pkg/$(PKG)
$(PKG): $(OFILES)
$(O)ar grc $(PKG) $(OFILES)
nuke:
- rm -f *.$(O) *.a $(GOROOT)/lib/$(PKG)
+ rm -f *.$(O) *.a $(GOROOT)/pkg/$(PKG)
clean:
rm -f *.$(O) *.a