diff options
author | sagitario <sagitario@fc51e93f-b9fe-4711-8d8d-3ae870c5f7d8> | 2014-02-25 23:00:44 (GMT) |
---|---|---|
committer | sagitario <sagitario@fc51e93f-b9fe-4711-8d8d-3ae870c5f7d8> | 2014-02-25 23:00:44 (GMT) |
commit | cd3bafbc9a4d0fe3b5f7d9338d18c27d25bcf43c (patch) | |
tree | 34f59bbd6d826f157289aa938b952ce6ce7cd459 /Makefile | |
parent | 5e35f20a3fe21c9ea6a79738819ead8328855b9b (diff) | |
download | cv2pdb-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-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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
|