Changeset - r17784:b2dfc033faef
[Not reviewed]
master
0 1 0
rubidium - 13 years ago 2011-06-13 08:28:29
rubidium@openttd.org
(svn r22579) -Fix (r22576): copy-paste error :(
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
Makefile.msvc
Show inline comments
 
@@ -18,25 +18,25 @@ ifdef VERBOSE
 
	Q =
 
else
 
	Q = @
 
endif
 

	
 
AWK         = "awk"
 
ROOT_DIR   := $(shell pwd)
 
BIN_DIR     = "$(ROOT_DIR)/bin"
 
SRC_DIR     = "$(ROOT_DIR)/src"
 
BUNDLE_DIR  = "$(ROOT_DIR)/bundle"
 
BUNDLES_DIR = "$(ROOT_DIR)/bundles"
 
TTD         = openttd.exe
 
PDB         = openttd.pdb
 
TARGET     := $(shell echo $(PLATFORM) | sed "s@win64@x64@;s@win32@Win32@")
 

	
 
all:
 
	$(Q)cp objs/$(TARGET)/Release/$(TTD) $(BIN_DIR)/$(TTD)
 

	
 
include Makefile.bundle.in
 

	
 
bundle_pdb:
 
	@echo '[BUNDLE] Creating $(BUNDLE_NAME).pdb.xz'
 
	$(Q)mkdir -p "$(BUNDLES_DIR)"
 
	$(Q)cp objs/$(TARGET)/Release/$(PDB) $(BUNDLES_DIR)/$(BUNDLE_NAME).pdb
 
	$(Q)cd xz -9 $(BUNDLES_DIR)/$(BUNDLE_NAME).pdb
 
	$(Q)xz -9 $(BUNDLES_DIR)/$(BUNDLE_NAME).pdb
0 comments (0 inline, 0 general)