Skip to content

Commit

Permalink
remove Makefile for Go 1
Browse files Browse the repository at this point in the history
  • Loading branch information
kicool committed Mar 30, 2012
1 parent dc0a4e1 commit be01959
Show file tree
Hide file tree
Showing 11 changed files with 20 additions and 91 deletions.
16 changes: 15 additions & 1 deletion README
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
4 samples:
5 samples:
hello
echo
sum
math
alloc

*.Binary file compare
Linux svr-ubuntu-mirror 2.6.35-22-server #35-Ubuntu SMP Sat Oct 16 22:02:33 UTC 2010 x86_64 GNU/Linux
go version weekly.2012-03-04 +f4470a54e6db

hello/hello:1394075B
ELF 64-bit LSB executable, x86-64, version 1 (SYSV), statically linked, not stripped
text data bss dec hex filename
904179 54424 33666992 34625595 210583b hello/hello
mini/mini:260122B
ELF 64-bit LSB executable, x86-64, version 1 (SYSV), statically linked, not stripped
text data bss dec hex filename
146285 8816 33665640 33820741 2041045 mini/mini
11 changes: 0 additions & 11 deletions alloc/Makefile

This file was deleted.

5 changes: 4 additions & 1 deletion ascii/ascii.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ import (

func main() {
for i := 0; i < 0xff; i++ {
fmt.Printf("0x%:", i)
fmt.Printf("0x%0X %c ", i, i)
if 0 == i % 8 {
fmt.Println()
}
}
}
11 changes: 0 additions & 11 deletions echo/Makefile

This file was deleted.

11 changes: 0 additions & 11 deletions guessnmb/Makefile

This file was deleted.

11 changes: 0 additions & 11 deletions hello/Makefile

This file was deleted.

11 changes: 0 additions & 11 deletions math/Makefile

This file was deleted.

11 changes: 0 additions & 11 deletions mini/Makefile

This file was deleted.

11 changes: 0 additions & 11 deletions sum/Makefile

This file was deleted.

11 changes: 0 additions & 11 deletions swap/Makefile

This file was deleted.

2 changes: 1 addition & 1 deletion triv/triv.go
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ func Logger(w http.ResponseWriter, req *http.Request) {
w.Write([]byte("oops"))
}

var webroot = flag.String("root", "/home/kicool", "web root directory")
var webroot = flag.String("root", "/home/kicool/go.local", "web root directory")

func main() {
flag.Parse()
Expand Down

0 comments on commit be01959

Please sign in to comment.