-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add makefile, change sample DB connection info to be more default-ish
- Loading branch information
Christopher Browne
committed
Nov 4, 2011
1 parent
da8e19e
commit 97c60bd
Showing
4 changed files
with
46 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
O=8 | ||
AS=${O}a | ||
CC=${O}c | ||
GC=${O}g | ||
LD=${O}l | ||
OS=568vq | ||
CFLAGS=-FVw |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
O=6 | ||
AS=${O}a | ||
CC=${O}c | ||
GC=${O}g | ||
LD=${O}l | ||
OS=568vq | ||
CFLAGS=-FVw |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
include Make.$(GOARCH) | ||
ALL=pool multipleselects scan statements | ||
|
||
all: $(ALL) | ||
|
||
scan: scan.$(O) | ||
$(LD) -o scan scan.$(O) | ||
|
||
scan.$(O): scan.go | ||
$(GC) scan.go | ||
|
||
multipleselects: multipleselects.$(O) | ||
$(LD) -o multipleselects multipleselects.$(O) | ||
|
||
multipleselects.$(O): multipleselects.go | ||
$(GC) multipleselects.go | ||
|
||
statements: statements.$(O) | ||
$(LD) -o statements statements.$(O) | ||
|
||
statements.$(O): statements.go | ||
$(GC) statements.go | ||
|
||
pool: pool.$(O) | ||
$(LD) -o pool pool.$(O) | ||
|
||
pool.$(O): pool.go | ||
$(GC) pool.go | ||
|
||
clean: | ||
rm -f *.6 *.8 $(ALL) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters