shithub: openh264

Download patch

ref: fa52fbfc9d0cd756c2b8d9880e6ca79ac4ae8f61
parent: 77c40e09e00db54731dace527d762eff6c738fda
author: Martin Storsjö <martin@martin.st>
date: Thu Jan 21 05:23:34 EST 2016

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