mirror of
https://gogs.blitter.com/RLabs/xs
synced 2024-08-14 10:26:42 +00:00
Makefile cond for MSYS vs Linux
This commit is contained in:
parent
fc1625a0ed
commit
1a707efeb8
1 changed files with 5 additions and 0 deletions
5
Makefile
5
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 -
|
||||
|
|
Loading…
Reference in a new issue