Browse Source

Add Makefile and ignore files for testing

Blallo 3 years ago
parent
commit
d045ad6c2c
2 changed files with 14 additions and 0 deletions
  1. 2 0
      .gitignore
  2. 12 0
      Makefile

+ 2 - 0
.gitignore

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

+ 12 - 0
Makefile

@@ -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