From ae5a8cfa3bf7a17fc7ffc1db4f0709dd60a339d4 Mon Sep 17 00:00:00 2001 From: Russ Magee Date: Wed, 4 Apr 2018 15:51:03 +0000 Subject: [PATCH] Quick 'n dirty Makefile --- Makefile | 23 +++++++++++++++++++++++ hkexsh/mintty_wrapper.sh | 0 2 files changed, 23 insertions(+) create mode 100644 Makefile mode change 100644 => 100755 hkexsh/mintty_wrapper.sh diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..3b02d81 --- /dev/null +++ b/Makefile @@ -0,0 +1,23 @@ +.PHONY: clean lib client server passwd + +all: lib client server passwd + +clean: + rm -f\ + hkexsh/hkexsh hkexsh/hkexsh.exe\ + hkexshd/hkexshd hkexshd/hkexshd.exe\ + hkexpasswd/hkexpasswd hkexpasswd/hkexpasswd.exe + + +lib: + go install . + +client: lib + cd hkexsh; go build .; cd - + +server: lib + cd hkexshd; go build .; cd - + +passwd: lib + cd hkexpasswd; go build .; cd - + diff --git a/hkexsh/mintty_wrapper.sh b/hkexsh/mintty_wrapper.sh old mode 100644 new mode 100755