Makefile cond for MSYS vs Linux

This commit is contained in:
Russ Magee 2018-05-26 15:54:54 -07:00
parent fc1625a0ed
commit 1a707efeb8
1 changed files with 5 additions and 0 deletions

View File

@ -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 -