Makefile (352B)
1 # This makefile provides some convenient shortcuts for common operations. The 2 # actual build logic happens in build.sh. 3 4 BUILD_SCRIPT=./build.sh 5 6 .PHONY: all clean debug release run 7 8 all: 9 $(BUILD_SCRIPT) 10 11 clean: 12 rm build/ -r 13 14 debug: 15 $(BUILD_SCRIPT) --debug-only 16 17 release: 18 $(BUILD_SCRIPT) --release-only 19 20 run: release 21 ./build/release/tunnel-runner