diff options
| author | Rob Pike <r@golang.org> | 2008-07-03 13:42:04 -0700 |
|---|---|---|
| committer | Rob Pike <r@golang.org> | 2008-07-03 13:42:04 -0700 |
| commit | ef12ae46318b4242a0c2d65e9627afa73dbe12fb (patch) | |
| tree | d11ac3e018ca1203183f7f521af61726c069569c /src/runtime | |
| parent | de5442893ddb8a4e0374a2c9a5e5b58d2f5523bd (diff) | |
| download | go-ef12ae46318b4242a0c2d65e9627afa73dbe12fb.tar.xz | |
drop some superfluous file prefixes in runtime
SVN=125956
Diffstat (limited to 'src/runtime')
| -rw-r--r-- | src/runtime/Makefile | 9 | ||||
| -rw-r--r-- | src/runtime/clean.bash | 2 | ||||
| -rw-r--r-- | src/runtime/map.c (renamed from src/runtime/runtime_map.c) | 0 | ||||
| -rw-r--r-- | src/runtime/print.c (renamed from src/runtime/runtime_print.c) | 0 | ||||
| -rw-r--r-- | src/runtime/string.c (renamed from src/runtime/runtime_string.c) | 0 |
5 files changed, 7 insertions, 4 deletions
diff --git a/src/runtime/Makefile b/src/runtime/Makefile index 8b80e3f01d..e3f15c836d 100644 --- a/src/runtime/Makefile +++ b/src/runtime/Makefile @@ -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 diff --git a/src/runtime/clean.bash b/src/runtime/clean.bash index 8d6bed7d10..a64198096a 100644 --- a/src/runtime/clean.bash +++ b/src/runtime/clean.bash @@ -6,6 +6,6 @@ set -ex for GOOS in linux darwin do - make clean + make nuke done diff --git a/src/runtime/runtime_map.c b/src/runtime/map.c index 0dd655b16e..0dd655b16e 100644 --- a/src/runtime/runtime_map.c +++ b/src/runtime/map.c diff --git a/src/runtime/runtime_print.c b/src/runtime/print.c index ebc461bc46..ebc461bc46 100644 --- a/src/runtime/runtime_print.c +++ b/src/runtime/print.c diff --git a/src/runtime/runtime_string.c b/src/runtime/string.c index 9bac09184d..9bac09184d 100644 --- a/src/runtime/runtime_string.c +++ b/src/runtime/string.c |
