From 87d2d201ec89581813814ddae7501d836d6551a5 Mon Sep 17 00:00:00 2001 From: Bertrand Moreau Date: Fri, 21 Aug 2020 12:01:54 +0200 Subject: [PATCH] Removed: if windows It isn't mandatory to be suffixed by ".exe" to be runnable into an windows. --- Makefile | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) 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 .