GOC=go build GOFLAGS=-a -ldflags '-s' CGOR=CGO_ENABLED=0 all: stat reclist run: go run \ nethack-launcher.go stat: mkdir -p bin/ $(CGOR) $(GOC) $(GOFLAGS) -o bin/nethack-launcher nethack-launcher.go reclist: mkdir -p bin/ gcc -static deps/reclist.c -o bin/reclist dependencies: go get github.com/gorilla/mux clean: rm -rf bin/