Add Makefile and ignore files for testing

This commit is contained in:
Blallo 2021-03-18 23:54:34 +01:00
parent 31287f03e8
commit d045ad6c2c
No known key found for this signature in database
GPG key ID: 0CBE577C9B72DC3F
2 changed files with 14 additions and 0 deletions

2
.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
/bin
/papero.toml

12
Makefile Normal file
View 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