mirror of
https://gogs.blitter.com/RLabs/xs
synced 2024-08-14 10:26:42 +00:00
Quick 'n dirty Makefile
This commit is contained in:
parent
5da70447b0
commit
ae5a8cfa3b
2 changed files with 23 additions and 0 deletions
23
Makefile
Normal file
23
Makefile
Normal file
|
@ -0,0 +1,23 @@
|
|||
.PHONY: clean lib client server passwd
|
||||
|
||||
all: lib client server passwd
|
||||
|
||||
clean:
|
||||
rm -f\
|
||||
hkexsh/hkexsh hkexsh/hkexsh.exe\
|
||||
hkexshd/hkexshd hkexshd/hkexshd.exe\
|
||||
hkexpasswd/hkexpasswd hkexpasswd/hkexpasswd.exe
|
||||
|
||||
|
||||
lib:
|
||||
go install .
|
||||
|
||||
client: lib
|
||||
cd hkexsh; go build .; cd -
|
||||
|
||||
server: lib
|
||||
cd hkexshd; go build .; cd -
|
||||
|
||||
passwd: lib
|
||||
cd hkexpasswd; go build .; cd -
|
||||
|
0
hkexsh/mintty_wrapper.sh
Normal file → Executable file
0
hkexsh/mintty_wrapper.sh
Normal file → Executable file
Loading…
Reference in a new issue