aboutsummaryrefslogtreecommitdiff
path: root/src/lib/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/Makefile')
-rw-r--r--src/lib/Makefile9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/lib/Makefile b/src/lib/Makefile
index 2c28ec5d44..bfab646d7a 100644
--- a/src/lib/Makefile
+++ b/src/lib/Makefile
@@ -24,7 +24,6 @@ DIRS=\
time\
FILES=\
- bignum\
bufio\
flag\
malloc\
@@ -35,14 +34,17 @@ FILES=\
testing\
utf8\
+# bignum\
+
TEST=\
- bignum\
bufio\
once\
sort\
strings\
utf8\
+# bignum\
+
clean.dirs: $(addsuffix .dirclean, $(DIRS))
install.dirs: $(addsuffix .dirinstall, $(DIRS))
install.files: $(addsuffix .install, $(FILES))
@@ -99,7 +101,8 @@ http.dirinstall: bufio.install io.dirinstall net.dirinstall os.dirinstall string
io.dirinstall: os.dirinstall syscall.dirinstall
json.dirinstall: container/array.dirinstall fmt.dirinstall io.dirinstall math.dirinstall \
strconv.dirinstall strings.install utf8.install
-net.dirinstall: fmt.dirinstall once.install os.dirinstall strconv.dirinstall
+# TODO(rsc): net is not supposed to depend on fmt or strings or strconv
+net.dirinstall: fmt.dirinstall once.install os.dirinstall strconv.dirinstall strings.install
os.dirinstall: syscall.dirinstall
regexp.dirinstall: os.dirinstall
reflect.dirinstall: strconv.dirinstall sync.dirinstall