Browse Source

Makefile: on Windows, executable should have ".exe" (#550)

tags/v1.2.0-rc1
Andrey Nering Lunny Xiao 8 years ago
parent
commit
2b9a29e7d0
1 changed files with 6 additions and 1 deletions
  1. +6
    -1
      Makefile

+ 6
- 1
Makefile View File

@@ -1,7 +1,12 @@
DIST := dist
EXECUTABLE := gitea
IMPORT := code.gitea.io/gitea

ifeq ($(OS), Windows_NT)
EXECUTABLE := gitea.exe
else
EXECUTABLE := gitea
endif

BINDATA := modules/{options,public,templates}/bindata.go
STYLESHEETS := $(wildcard public/less/index.less public/less/_*.less)
JAVASCRIPTS :=


Loading…
Cancel
Save