From ffacd42bafa5d53e8c75b6c2ddef3ae997697c11 Mon Sep 17 00:00:00 2001 From: Russ Magee Date: Sat, 26 May 2018 16:31:43 -0700 Subject: [PATCH] Fixes to previous Makefile conditionals --- Makefile | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index c86ae4d..7d7d6c6 100644 --- a/Makefile +++ b/Makefile @@ -13,16 +13,22 @@ lib: go install . client: lib - cd hkexsh; go build .; cd - + @cd hkexsh + go build . + @cd - -ifneq (MSYSTEM,) +ifneq ($(MSYSTEM),) server: lib @echo "hkexshd server not supported on Windows (yet)" else server: lib - cd hkexshd; go build .; cd - + @cd hkexshd + go build . + @cd - endif passwd: lib - cd hkexpasswd; go build .; cd - + @cd hkexpasswd + @go build . + @cd -