mirror of https://gogs.blitter.com/RLabs/xs
Makefile cond for MSYS vs Linux
This commit is contained in:
parent
fc1625a0ed
commit
1a707efeb8
5
Makefile
5
Makefile
|
@ -15,8 +15,13 @@ lib:
|
||||||
client: lib
|
client: lib
|
||||||
cd hkexsh; go build .; cd -
|
cd hkexsh; go build .; cd -
|
||||||
|
|
||||||
|
ifneq (MSYSTEM,)
|
||||||
|
server: lib
|
||||||
|
@echo "hkexshd server not supported on Windows (yet)"
|
||||||
|
else
|
||||||
server: lib
|
server: lib
|
||||||
cd hkexshd; go build .; cd -
|
cd hkexshd; go build .; cd -
|
||||||
|
endif
|
||||||
|
|
||||||
passwd: lib
|
passwd: lib
|
||||||
cd hkexpasswd; go build .; cd -
|
cd hkexpasswd; go build .; cd -
|
||||||
|
|
Loading…
Reference in New Issue