Codechange: Use RAILTYPE_BEGIN instead of RAILTYPE_RAIL when the intention is iteration.
[openttd-github.git] / Makefile.msvc
blob8070062acf781db1ed22db90a95b64e305f9c93a
1 # This file is part of OpenTTD.
2 # OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
3 # OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
4 # See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
7 # Makefile for creating bundles of MSVC's binaries in the same way as we make
8 # the zip bundles for ALL other OSes.
10 # Usage: make -f Makefile.msvc PLATFORM=[Win32|x64] BUNDLE_NAME=openttd-<version>-win[32|64]
11 #   or   make -f Makefile.msvc PLATFORM=[Win32|x64] BUNDLE_NAME=OTTD-win[32|64]-nightly-<revision>
14 # Check if we want to show what we are doing
15 ifdef VERBOSE
16         Q =
17 else
18         Q = @
19 endif
21 AWK         = "awk"
22 ROOT_DIR   := $(shell pwd)
23 BIN_DIR     = "$(ROOT_DIR)/bin"
24 SRC_DIR     = "$(ROOT_DIR)/src"
25 BUNDLE_DIR  = "$(ROOT_DIR)/bundle"
26 BUNDLES_DIR = "$(ROOT_DIR)/bundles"
27 TTD         = openttd.exe
28 PDB         = openttd.pdb
29 MODE        = Release
30 TARGET     := $(shell echo $(PLATFORM) | sed "s@win64@x64@;s@win32@Win32@")
32 all:
33         $(Q)cp objs/$(TARGET)/$(MODE)/$(TTD) $(BIN_DIR)/$(TTD)
35 include Makefile.bundle.in
37 bundle_pdb:
38         @echo '[BUNDLE] Creating $(BUNDLE_NAME).pdb.xz'
39         $(Q)mkdir -p "$(BUNDLES_DIR)"
40         $(Q)cp objs/$(TARGET)/Release/$(PDB) $(BUNDLES_DIR)/$(BUNDLE_NAME).pdb
41         $(Q)xz -9 $(BUNDLES_DIR)/$(BUNDLE_NAME).pdb
43 regression: all
44         $(Q)cp bin/$(TTD) bin/openttd
45         $(Q)cd bin && sh ai/regression/run.sh