Removed: if windows

It isn't mandatory to be suffixed by ".exe" to be runnable into an
windows.
This commit is contained in:
Bertrand Moreau 2020-08-21 12:01:54 +02:00 committed by Zorglube
parent 516b9a212b
commit 87d2d201ec
1 changed files with 2 additions and 7 deletions

View File

@ -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 .