Add Makefile and ignore files for testing
This commit is contained in:
parent
31287f03e8
commit
d045ad6c2c
2 changed files with 14 additions and 0 deletions
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
/bin
|
||||
/papero.toml
|
12
Makefile
Normal file
12
Makefile
Normal file
|
@ -0,0 +1,12 @@
|
|||
./bin:
|
||||
mkdir -p build
|
||||
|
||||
./bin/papero: ./build
|
||||
go build -o ./bin/papero ./cli/papero/...
|
||||
|
||||
.PHONY: clean
|
||||
clean:
|
||||
rm -f ./bin/*
|
||||
|
||||
.PHONY: build
|
||||
build: clean ./bin/papero
|
Loading…
Reference in a new issue