From 1a707efeb88028ebe3fa49d5e0aa9c5fa5dc1320 Mon Sep 17 00:00:00 2001 From: Russ Magee Date: Sat, 26 May 2018 15:54:54 -0700 Subject: [PATCH] Makefile cond for MSYS vs Linux --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index 3b02d81..c86ae4d 100644 --- a/Makefile +++ b/Makefile @@ -15,8 +15,13 @@ lib: client: lib cd hkexsh; go build .; cd - +ifneq (MSYSTEM,) +server: lib + @echo "hkexshd server not supported on Windows (yet)" +else server: lib cd hkexshd; go build .; cd - +endif passwd: lib cd hkexpasswd; go build .; cd -