]> Cypherpunks repositories - gostls13.git/commitdiff
drop some superfluous file prefixes in runtime
authorRob Pike <r@golang.org>
Thu, 3 Jul 2008 20:42:04 +0000 (13:42 -0700)
committerRob Pike <r@golang.org>
Thu, 3 Jul 2008 20:42:04 +0000 (13:42 -0700)
SVN=125956

src/runtime/Makefile
src/runtime/clean.bash
src/runtime/map.c [moved from src/runtime/runtime_map.c with 100% similarity]
src/runtime/print.c [moved from src/runtime/runtime_print.c with 100% similarity]
src/runtime/string.c [moved from src/runtime/runtime_string.c with 100% similarity]

index 8b80e3f01df23738f87485770d5aea2c63152bc3..e3f15c836d0bf76f22a26e256920f5d7d3336b87 100644 (file)
@@ -18,9 +18,9 @@ LIBOFILES=\
        rt2_$(GOARCH).$O\
        sys_$(GOARCH)_$(GOOS).$O\
        runtime.$O\
-       runtime_map.$O\
-       runtime_print.$O\
-       runtime_string.$O\
+       map.$O\
+       print.$O\
+       string.$O\
        sys_file.$O\
 
 OFILES=$(RT0OFILES) $(LIBOFILES)
@@ -38,6 +38,9 @@ $(LIB): $(LIBOFILES)
 
 $(OFILES): $(HFILES)
 
+nuke:
+       rm -f *.$(O) *.a $(GOROOT)/lib/$(LIB)
+
 clean:
        rm -f *.$(O) *.a
 
index 8d6bed7d108b0d314b74b94d17eeaac5c18e937a..a64198096a82550f3ede19ef4e72af7bacbbd3fe 100644 (file)
@@ -6,6 +6,6 @@ set -ex
 
 for GOOS in linux darwin
 do
-       make clean
+       make nuke
 done
 
similarity index 100%
rename from src/runtime/runtime_map.c
rename to src/runtime/map.c