14 lines
207 B
Makefile
14 lines
207 B
Makefile
|
|
||
|
build:
|
||
|
go build -o bin/pairs cmd/pairs/main.go
|
||
|
go build -o bin/corpus cmd/corpus/main.go
|
||
|
go build -o bin/replace cmd/replace/main.go
|
||
|
|
||
|
run:
|
||
|
./bin/corpus
|
||
|
./bin/pairs
|
||
|
./bin/replace
|
||
|
|
||
|
test:
|
||
|
./bin/test.sh
|