ref: 3174e2a220ff5408edf1bef90476e3ccc747d320
parent: 77c40e09e00db54731dace527d762eff6c738fda
parent: fa52fbfc9d0cd756c2b8d9880e6ca79ac4ae8f61
author: HaiboZhu <haibozhu@cisco.com>
date: Fri Jan 22 04:45:57 EST 2016
Merge pull request #2344 from mstorsjo/cleanup-map Ignore the MSVC generated map file, remove it on make clean
--- a/.gitignore
+++ b/.gitignore
@@ -30,6 +30,7 @@
# Other files generated by the MSVC compiler
*.exp
*.pdb
+*.map
# Executables built by the MSVC project files
bin
--- a/Makefile
+++ b/Makefile
@@ -164,7 +164,7 @@
ifeq (android,$(OS))
clean: clean_Android
endif
- $(QUIET)rm -f $(OBJS) $(OBJS:.$(OBJ)=.d) $(OBJS:.$(OBJ)=.obj) $(LIBRARIES) $(BINARIES) *.lib *.a *.dylib *.dll *.so *.exe *.pdb *.exp *.pc *.res
+ $(QUIET)rm -f $(OBJS) $(OBJS:.$(OBJ)=.d) $(OBJS:.$(OBJ)=.obj) $(LIBRARIES) $(BINARIES) *.lib *.a *.dylib *.dll *.so *.exe *.pdb *.exp *.pc *.res *.map
gmp-bootstrap:
if [ ! -d gmp-api ] ; then git clone https://github.com/mozilla/gmp-api gmp-api ; fi