From e020c32b9b17007f1fc695d26b3f56105a414ce8 Mon Sep 17 00:00:00 2001 From: Timothy Loftus Date: Wed, 2 Oct 2024 16:31:33 -0500 Subject: [PATCH] updating gitignore and Makefile. --- .gitignore | 2 ++ Makefile | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3b6ec6e --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +subnetcalc +subnetcalc.exe diff --git a/Makefile b/Makefile index 0c56b3c..b130250 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ VERSION=0.0 all: - go build + GOOS=linux GOARCH=amd64 go build GOOS=windows GOARCH=amd64 go build