Commit 60178956 authored by Rob Pike's avatar Rob Pike

drop the os_ prefix on the file names in os. os_test.go can stay.

R=rsc
DELTA=793  (392 added, 392 deleted, 9 changed)
OCL=24777
CL=24804
parent 73dd4a37
......@@ -3,8 +3,8 @@
# license that can be found in the LICENSE file.
# DO NOT EDIT. Automatically generated by gobuild.
# gobuild -m os_env.go os_error.go os_file.go os_test.go os_time.go\
# os_types.go stat_amd64_linux.go dir_amd64_linux.go >Makefile
# gobuild -m dir_amd64_linux.go env.go error.go file.go stat_amd64_linux.go\
# time.go types.go >Makefile
O=6
GC=$(O)g
CC=$(O)c -w
......@@ -33,16 +33,16 @@ coverage: packages
$(AS) $*.s
O1=\
os_error.$O\
os_types.$O\
error.$O\
types.$O\
O2=\
os_env.$O\
os_time.$O\
env.$O\
stat_$(GOARCH)_$(GOOS).$O\
time.$O\
O3=\
os_file.$O\
file.$O\
O4=\
dir_$(GOARCH)_$(GOOS).$O\
......@@ -50,15 +50,15 @@ O4=\
os.a: a1 a2 a3 a4
a1: $(O1)
$(AR) grc os.a os_error.$O os_types.$O
$(AR) grc os.a error.$O types.$O
rm -f $(O1)
a2: $(O2)
$(AR) grc os.a os_env.$O os_time.$O stat_$(GOARCH)_$(GOOS).$O
$(AR) grc os.a env.$O stat_$(GOARCH)_$(GOOS).$O time.$O
rm -f $(O2)
a3: $(O3)
$(AR) grc os.a os_file.$O
$(AR) grc os.a file.$O
rm -f $(O3)
a4: $(O4)
......
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