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 -