From 0ba85e2ee8d4b01f50705fb3495a3a46db784f19 Mon Sep 17 00:00:00 2001 From: Russ Magee Date: Sat, 26 May 2018 23:44:13 -0700 Subject: [PATCH] Grr, added new Makefiles Signed-off-by: Russ Magee --- hkexpasswd/Makefile | 10 ++++++++++ hkexsh/Makefile | 10 ++++++++++ hkexshd/Makefile | 10 ++++++++++ 3 files changed, 30 insertions(+) create mode 100644 hkexpasswd/Makefile create mode 100644 hkexsh/Makefile create mode 100644 hkexshd/Makefile diff --git a/hkexpasswd/Makefile b/hkexpasswd/Makefile new file mode 100644 index 0000000..32000d7 --- /dev/null +++ b/hkexpasswd/Makefile @@ -0,0 +1,10 @@ +.PHONY: clean all + +EXE = $(notdir $(shell pwd)) + +all: + go build . + +clean: + $(RM) $(EXE) $(EXE).exe + diff --git a/hkexsh/Makefile b/hkexsh/Makefile new file mode 100644 index 0000000..32000d7 --- /dev/null +++ b/hkexsh/Makefile @@ -0,0 +1,10 @@ +.PHONY: clean all + +EXE = $(notdir $(shell pwd)) + +all: + go build . + +clean: + $(RM) $(EXE) $(EXE).exe + diff --git a/hkexshd/Makefile b/hkexshd/Makefile new file mode 100644 index 0000000..32000d7 --- /dev/null +++ b/hkexshd/Makefile @@ -0,0 +1,10 @@ +.PHONY: clean all + +EXE = $(notdir $(shell pwd)) + +all: + go build . + +clean: + $(RM) $(EXE) $(EXE).exe +