t

commit c52764d9361ce660683fc33a0e64b84111f66c44

Author: Pedro Lucas Porcellis <pedrolucasporcellis@gmail.com>

Add a basic make file

 .gitignore | 1 +
 Makefile | 8 ++++++++


diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000000000000000000000000000000000000..36f971e324f3e948a5289e81d36eb4dbbacb887e
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+bin/*




diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000000000000000000000000000000000000..38025da8b27e7bcb8f0175d25e2fab9718716c6d
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,8 @@
+PKGNAME = t
+
+GOPATH = $(realpath .go)
+
+all: t
+
+t:
+	env go build -o bin/$(PKGNAME) src/main.go




diff --git a/src/main b/src/main
deleted file mode 100755
index 95344740f802ad28d425bd6e87fe56a9419ad8fd..0000000000000000000000000000000000000000
Binary files a/src/main and /dev/null differ