From 9672a5815fc437d50a966bf62e2666f2158e09a7 Mon Sep 17 00:00:00 2001 From: Florian Baumann Date: Tue, 16 Mar 2021 15:40:14 +0100 Subject: [PATCH] Add Makefile --- .gitignore | 1 + Makefile | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 .gitignore create mode 100644 Makefile diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8d7f8e1 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +bin/ipcalc diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..8d2f7fd --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +build: + go build -o bin/ipcalc main.go + +run: + go run main.go + +all: build