mirror of
https://gogs.blitter.com/RLabs/xs
synced 2024-08-14 10:26:42 +00:00
Updates to main Makefile (and added spinsult Makefile)
This commit is contained in:
parent
9edcc5110c
commit
94e06abbcb
2 changed files with 38 additions and 10 deletions
31
Makefile
31
Makefile
|
@ -1,9 +1,10 @@
|
|||
.PHONY: info clean lib client server passwd
|
||||
.PHONY: info clean common client server passwd subpkgs
|
||||
|
||||
SUBDIRS = hkexnet herradurakex hkexpasswd hkexsh hkexshd
|
||||
LIBS = hkexnet herradurakex
|
||||
SUBPKGS = spinsult hkexnet herradurakex
|
||||
TOOLS = hkexpasswd hkexsh hkexshd
|
||||
SUBDIRS = $(LIBS) $(TOOLS)
|
||||
|
||||
all: lib client server passwd
|
||||
all: common client server passwd
|
||||
|
||||
clean:
|
||||
go clean .
|
||||
|
@ -11,20 +12,30 @@ clean:
|
|||
$(MAKE) -C $$d clean;\
|
||||
done
|
||||
|
||||
lib:
|
||||
subpkgs:
|
||||
for d in $(SUBPKGS); do\
|
||||
$(MAKE) -C $$d all;\
|
||||
done
|
||||
|
||||
tools:
|
||||
for d in $(TOOLS); do\
|
||||
$(MAKE) -C $$d all;\
|
||||
done
|
||||
|
||||
common:
|
||||
go install .
|
||||
|
||||
client: lib
|
||||
client: common
|
||||
$(MAKE) -C hkexsh
|
||||
|
||||
ifneq ($(MSYSTEM),)
|
||||
server: lib
|
||||
echo "hkexshd server not supported on Windows (yet)"
|
||||
server: common
|
||||
echo "hkexshd server not (yet) supported on Windows"
|
||||
else
|
||||
server: lib
|
||||
server: common
|
||||
$(MAKE) -C hkexshd
|
||||
endif
|
||||
|
||||
passwd: lib
|
||||
passwd: common
|
||||
$(MAKE) -C hkexpasswd
|
||||
|
||||
|
|
17
spinsult/Makefile
Normal file
17
spinsult/Makefile
Normal file
|
@ -0,0 +1,17 @@
|
|||
.PHONY: info clean lib
|
||||
|
||||
all: lib
|
||||
|
||||
clean:
|
||||
go clean .
|
||||
|
||||
lib: info
|
||||
go install .
|
||||
|
||||
ifneq ($(MSYSTEM),)
|
||||
info:
|
||||
@echo "Building for Windows (MSYS)"
|
||||
else
|
||||
info:
|
||||
@echo "Building for Linux"
|
||||
endif
|
Loading…
Reference in a new issue