summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorsagitario <sagitario@fc51e93f-b9fe-4711-8d8d-3ae870c5f7d8>2014-02-25 23:00:44 (GMT)
committersagitario <sagitario@fc51e93f-b9fe-4711-8d8d-3ae870c5f7d8>2014-02-25 23:00:44 (GMT)
commitcd3bafbc9a4d0fe3b5f7d9338d18c27d25bcf43c (patch)
tree34f59bbd6d826f157289aa938b952ce6ce7cd459 /Makefile
parent5e35f20a3fe21c9ea6a79738819ead8328855b9b (diff)
downloadcv2pdb-cd3bafbc9a4d0fe3b5f7d9338d18c27d25bcf43c.zip
cv2pdb-cd3bafbc9a4d0fe3b5f7d9338d18c27d25bcf43c.tar.gz
cv2pdb-cd3bafbc9a4d0fe3b5f7d9338d18c27d25bcf43c.tar.bz2
Version 0.30: fixed crash when converting DWARF for executables without .reloc segment
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 8d5f278..28b068b 100644
--- a/Makefile
+++ b/Makefile
@@ -58,13 +58,14 @@ $(DOWNLOADS):
if not exist $(DOWNLOADS)\nul mkdir $(DOWNLOADS)
###############################
+ZIP = zip
SRC_ZIP = $(DOWNLOADS)\cv2pdb_src_$(VERSION).zip
src: $(DOWNLOADS) $(SRC_ZIP)
$(SRC_ZIP): $(SRC) $(ADD) $(DOC) $(TEST)
if exist $(SRC_ZIP) del $(SRC_ZIP)
- zip $(SRC_ZIP) -X $(SRC) $(ADD) $(DOC) $(TEST)
+ $(ZIP) $(SRC_ZIP) -X $(SRC) $(ADD) $(DOC) $(TEST)
###############################
BIN_ZIP = $(DOWNLOADS)\cv2pdb_$(VERSION).zip
@@ -73,7 +74,7 @@ bin: $(DOWNLOADS) $(BIN_ZIP)
$(BIN_ZIP): $(BIN) $(DOC) Makefile
if exist $(BIN_ZIP) del $(BIN_ZIP)
- zip $(BIN_ZIP) -j -X $(BIN) $(DOC)
+ $(ZIP) $(BIN_ZIP) -j -X $(BIN) $(DOC)
IDEDIR = $(VSINSTALLDIR)\Common7\IDE