Skip to content

Commit

Permalink
add Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
catatsuy committed Aug 6, 2019
1 parent 986c0bd commit b4a5a8c
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Makefile
@@ -0,0 +1,12 @@
export GO111MODULE=on

all: bin/benchmarker bin/payment bin/shipment

bin/benchmarker: bench/*/*.go
go build -o bin/benchmarker cmd/bench/main.go

bin/payment: external/payment/*.go
go build -o bin/payment cmd/payment/main.go

bin/shipment: external/shipment/*.go
go build -o bin/shipment cmd/shipment/main.go
1 change: 1 addition & 0 deletions bin/.gitignore
@@ -0,0 +1 @@
*

0 comments on commit b4a5a8c

Please sign in to comment.