Commit 2278ef7e authored by Russ Cox's avatar Russ Cox

libcgo: don't build for NaCl

R=nigeltao
CC=golang-dev
https://golang.org/cl/2290041
parent 5b7e50a0
......@@ -2,6 +2,13 @@
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
ifeq ($(GOOS),nacl)
# Nothing for NaCl
all clean install:
@true
else
include ../Make.inc
all: libcgo.so
......@@ -37,3 +44,4 @@ $(QUOTED_GOROOT)/pkg/$(GOOS)_$(GOARCH)/libcgo.so: libcgo.so
clean:
rm -f *.o *.so
endif
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment