From adc720816970335d6b7ef85e8a08ddcb336f0dd0 Mon Sep 17 00:00:00 2001 From: Jens Alfke Date: Wed, 6 Jan 2021 14:19:58 -0800 Subject: [PATCH] mdbx-make: Added DLLs and dSYMs to clean & gitignore. - Added file types .dll, .dylib and .dSYM to .gitignore - Added above to the file types deleted by `make clean` Resolves https://github.com/erthink/libmdbx/issues/151 --- .gitignore | 3 +++ GNUmakefile | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 1b664050..e407d9c4 100644 --- a/.gitignore +++ b/.gitignore @@ -8,6 +8,9 @@ *.orig *.rej *.so +*.dll +*.dylib +*.dSYM *[~#] .idea .le.ini diff --git a/GNUmakefile b/GNUmakefile index 34d40681..b065078b 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -72,7 +72,7 @@ strip: all strip libmdbx.$(SO_SUFFIX) $(TOOLS) clean: - rm -rf $(TOOLS) mdbx_test @* *.[ao] *.[ls]o *~ tmp.db/* \ + rm -rf $(TOOLS) mdbx_test @* *.[ao] *.[ls]o *.$(SO_SUFFIX) *.dSYM *~ tmp.db/* \ *.gcov *.log *.err src/*.o test/*.o mdbx_example dist \ config.h src/config.h src/version.c *.tar*