mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
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
This commit is contained in:
parent
73dd4a37f9
commit
6017895659
6 changed files with 10 additions and 10 deletions
|
|
@ -3,8 +3,8 @@
|
||||||
# license that can be found in the LICENSE file.
|
# license that can be found in the LICENSE file.
|
||||||
|
|
||||||
# DO NOT EDIT. Automatically generated by gobuild.
|
# DO NOT EDIT. Automatically generated by gobuild.
|
||||||
# gobuild -m os_env.go os_error.go os_file.go os_test.go os_time.go\
|
# gobuild -m dir_amd64_linux.go env.go error.go file.go stat_amd64_linux.go\
|
||||||
# os_types.go stat_amd64_linux.go dir_amd64_linux.go >Makefile
|
# time.go types.go >Makefile
|
||||||
O=6
|
O=6
|
||||||
GC=$(O)g
|
GC=$(O)g
|
||||||
CC=$(O)c -w
|
CC=$(O)c -w
|
||||||
|
|
@ -33,16 +33,16 @@ coverage: packages
|
||||||
$(AS) $*.s
|
$(AS) $*.s
|
||||||
|
|
||||||
O1=\
|
O1=\
|
||||||
os_error.$O\
|
error.$O\
|
||||||
os_types.$O\
|
types.$O\
|
||||||
|
|
||||||
O2=\
|
O2=\
|
||||||
os_env.$O\
|
env.$O\
|
||||||
os_time.$O\
|
|
||||||
stat_$(GOARCH)_$(GOOS).$O\
|
stat_$(GOARCH)_$(GOOS).$O\
|
||||||
|
time.$O\
|
||||||
|
|
||||||
O3=\
|
O3=\
|
||||||
os_file.$O\
|
file.$O\
|
||||||
|
|
||||||
O4=\
|
O4=\
|
||||||
dir_$(GOARCH)_$(GOOS).$O\
|
dir_$(GOARCH)_$(GOOS).$O\
|
||||||
|
|
@ -50,15 +50,15 @@ O4=\
|
||||||
os.a: a1 a2 a3 a4
|
os.a: a1 a2 a3 a4
|
||||||
|
|
||||||
a1: $(O1)
|
a1: $(O1)
|
||||||
$(AR) grc os.a os_error.$O os_types.$O
|
$(AR) grc os.a error.$O types.$O
|
||||||
rm -f $(O1)
|
rm -f $(O1)
|
||||||
|
|
||||||
a2: $(O2)
|
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)
|
rm -f $(O2)
|
||||||
|
|
||||||
a3: $(O3)
|
a3: $(O3)
|
||||||
$(AR) grc os.a os_file.$O
|
$(AR) grc os.a file.$O
|
||||||
rm -f $(O3)
|
rm -f $(O3)
|
||||||
|
|
||||||
a4: $(O4)
|
a4: $(O4)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue