diff --git a/Makefile b/Makefile index 07998fb..7dcda28 100644 --- a/Makefile +++ b/Makefile @@ -10,14 +10,9 @@ TAGS= -# Windows needs the .exe extension. -.if ${TARGET} == "windows" -EXT=.exe -.endif - .PHONY: fmt vet get clean dev setdev test ServerMovieNight -all: fmt vet test MovieNight$(EXT) static/main.wasm settings.json +all: fmt vet test MovieNight static/main.wasm settings.json # Build the server deployment server: ServerMovieNight static/main.wasm @@ -41,7 +36,7 @@ static/main.wasm: static/js/wasm_exec.js wasm/*.go common/*.go GOOS=js GOARCH=wasm go$(GO_VERSION) build -o $@ $(TAGS) wasm/*.go clean: - -rm MovieNight$(EXT) ./static/main.wasm ./static/js/wasm_exec.js + -rm MovieNight ./static/main.wasm ./static/js/wasm_exec.js fmt: gofmt -w .