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 .
|
||||
|
||||
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 -
|
||||
|
||||
|
|
Loading…
Reference in New Issue