mirror of https://gogs.blitter.com/RLabs/xs
Fixes to previous Makefile conditionals
This commit is contained in:
parent
1a707efeb8
commit
ffacd42baf
14
Makefile
14
Makefile
|
@ -13,16 +13,22 @@ lib:
|
||||||
go install .
|
go install .
|
||||||
|
|
||||||
client: lib
|
client: lib
|
||||||
cd hkexsh; go build .; cd -
|
@cd hkexsh
|
||||||
|
go build .
|
||||||
|
@cd -
|
||||||
|
|
||||||
ifneq (MSYSTEM,)
|
ifneq ($(MSYSTEM),)
|
||||||
server: lib
|
server: lib
|
||||||
@echo "hkexshd server not supported on Windows (yet)"
|
@echo "hkexshd server not supported on Windows (yet)"
|
||||||
else
|
else
|
||||||
server: lib
|
server: lib
|
||||||
cd hkexshd; go build .; cd -
|
@cd hkexshd
|
||||||
|
go build .
|
||||||
|
@cd -
|
||||||
endif
|
endif
|
||||||
|
|
||||||
passwd: lib
|
passwd: lib
|
||||||
cd hkexpasswd; go build .; cd -
|
@cd hkexpasswd
|
||||||
|
@go build .
|
||||||
|
@cd -
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue