From 8e2144fda4beb4af9b38d359b4baf1462d1e47c5 Mon Sep 17 00:00:00 2001 From: Nick Thomas Date: Sat, 17 Mar 2018 04:15:11 +0000 Subject: [PATCH] Add a Makefile --- .gitignore | 2 +- Makefile | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 Makefile diff --git a/.gitignore b/.gitignore index 54c0d33..b94421e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,2 @@ -/load +/loader /orig diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..667e9c2 --- /dev/null +++ b/Makefile @@ -0,0 +1,5 @@ +srcfiles = $(shell find . -iname *.go) + +loader: $(srcfiles) + go build -o loader ur.gs/chaos-gate/cmd/load +