23 lines
		
	
	
		
			787 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			787 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
build:
 | 
						|
	GOOS=linux GOARCH=amd64 go build -ldflags="-s -w" -gcflags "all=-trimpath=$(pwd)" -o build/wings_linux_amd64 -v wings.go
 | 
						|
	GOOS=linux GOARCH=arm64 go build -ldflags="-s -w" -gcflags "all=-trimpath=$(pwd)" -o build/wings_linux_arm64 -v wings.go
 | 
						|
 | 
						|
debug:
 | 
						|
	go build -race
 | 
						|
	sudo ./wings --debug --ignore-certificate-errors --config config.yml
 | 
						|
 | 
						|
# Runs a remotly debuggable session for Wings allowing an IDE to connect and target
 | 
						|
# different breakpoints.
 | 
						|
rmdebug:
 | 
						|
	go build -gcflags "all=-N -l" -race
 | 
						|
	sudo dlv --listen=:2345 --headless=true --api-version=2 --accept-multiclient exec ./wings -- --debug --ignore-certificate-errors --config config.yml
 | 
						|
 | 
						|
compress:
 | 
						|
	upx --brute build/wings_*
 | 
						|
 | 
						|
cross-build: clean build compress
 | 
						|
 | 
						|
clean:
 | 
						|
	rm -rf build/wings_*
 | 
						|
 | 
						|
.PHONY: all build compress clean |