76 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			76 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
# make
 | 
						|
# make GOARCH=386
 | 
						|
# make GOARCH=amd64
 | 
						|
# make GOOS=linux GOARCH=mips
 | 
						|
#
 | 
						|
# 'go tool dist list' for available os and architextures
 | 
						|
 | 
						|
NAME=hodu
 | 
						|
VERSION=1.0.0
 | 
						|
 | 
						|
SRCS=\
 | 
						|
	client.go \
 | 
						|
	client-ctl.go \
 | 
						|
	client-peer.go \
 | 
						|
	hodu.go \
 | 
						|
	hodu.pb.go \
 | 
						|
	hodu_grpc.pb.go \
 | 
						|
	packet.go \
 | 
						|
	server.go \
 | 
						|
	server-ctl.go \
 | 
						|
	server-peer.go \
 | 
						|
	server-proxy.go \
 | 
						|
	system.go
 | 
						|
 | 
						|
DATA = \
 | 
						|
	xterm.css \
 | 
						|
	xterm.js \
 | 
						|
	xterm-addon-fit.js \
 | 
						|
	xterm.html
 | 
						|
 | 
						|
CMD_DATA=\
 | 
						|
	cmd/tls.crt \
 | 
						|
	cmd/tls.key
 | 
						|
 | 
						|
CMD_SRCS=\
 | 
						|
	cmd/config.go \
 | 
						|
	cmd/logger.go \
 | 
						|
	cmd/main.go \
 | 
						|
 | 
						|
all: $(NAME)
 | 
						|
 | 
						|
$(NAME): $(DATA) $(SRCS) $(CMD_DATA) $(CMD_SRCS)
 | 
						|
	CGO_ENABLED=0 go build -x -ldflags "-X 'main.HODU_NAME=$(NAME)' -X 'main.HODU_VERSION=$(VERSION)'" -o $@ $(CMD_SRCS)
 | 
						|
 | 
						|
clean:
 | 
						|
	go clean -x -i
 | 
						|
	rm -f $(NAME)
 | 
						|
 | 
						|
hodu.pb.go: hodu.proto
 | 
						|
	protoc --go_out=. --go_opt=paths=source_relative \
 | 
						|
		--go-grpc_out=. --go-grpc_opt=paths=source_relative \
 | 
						|
		hodu.proto
 | 
						|
 | 
						|
hodu_grpc.pb.go: hodu.proto
 | 
						|
	protoc --go_out=. --go_opt=paths=source_relative \
 | 
						|
		--go-grpc_out=. --go-grpc_opt=paths=source_relative \
 | 
						|
		hodu.proto
 | 
						|
 | 
						|
xterm.js:
 | 
						|
	curl -L -o "$@" https://cdn.jsdelivr.net/npm/@xterm/xterm/lib/xterm.min.js
 | 
						|
 | 
						|
xterm-addon-fit.js:
 | 
						|
	curl -L -o "$@" https://cdn.jsdelivr.net/npm/xterm-addon-fit/lib/xterm-addon-fit.min.js
 | 
						|
 | 
						|
xterm.css:
 | 
						|
	curl -L -o "$@" https://cdn.jsdelivr.net/npm/@xterm/xterm/css/xterm.min.css
 | 
						|
	sed -r -i 's|^/\*# sourceMappingURL=/.+ \*/$$||g' "$@"
 | 
						|
 | 
						|
cmd/tls.crt:
 | 
						|
	openssl req -x509 -newkey rsa:4096 -keyout cmd/tls.key -out cmd/tls.crt -sha256 -days 36500 -nodes -subj "/CN=$(NAME)" --addext "subjectAltName=DNS:$(NAME),IP:10.0.0.1,IP:::1"
 | 
						|
 | 
						|
cmd/tls.key:
 | 
						|
	openssl req -x509 -newkey rsa:4096 -keyout cmd/tls.key -out cmd/tls.crt -sha256 -days 36500 -nodes -subj "/CN=$(NAME)" --addext "subjectAltName=DNS:$(NAME),IP:10.0.0.1,IP:::1"
 | 
						|
 | 
						|
.PHONY: clean certfiles
 |