mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-12-25 13:55:43 +00:00
Merge remote-tracking branch 'origin/pr/2494' into mbedtls-2.7
* origin/pr/2494: Ignore more generated files: seedfile, apidoc Improve .gitignore grouping and documentation Generate tags for Vi, for Emacs and with Global
This commit is contained in:
commit
63098de866
32
.gitignore
vendored
32
.gitignore
vendored
|
@ -1,8 +1,20 @@
|
||||||
|
# Random seed file created by test scripts and sample programs
|
||||||
|
seedfile
|
||||||
|
|
||||||
|
# CMake build artifacts:
|
||||||
CMakeCache.txt
|
CMakeCache.txt
|
||||||
CMakeFiles
|
CMakeFiles
|
||||||
CTestTestfile.cmake
|
CTestTestfile.cmake
|
||||||
cmake_install.cmake
|
cmake_install.cmake
|
||||||
Testing
|
Testing
|
||||||
|
# CMake generates *.dir/ folders for in-tree builds (used by MSVC projects), ignore all of those:
|
||||||
|
*.dir/
|
||||||
|
# MSVC files generated by CMake:
|
||||||
|
/*.sln
|
||||||
|
/*.vcxproj
|
||||||
|
/*.filters
|
||||||
|
|
||||||
|
# Test coverage build artifacts:
|
||||||
Coverage
|
Coverage
|
||||||
*.gcno
|
*.gcno
|
||||||
*.gcda
|
*.gcda
|
||||||
|
@ -10,16 +22,22 @@ Coverage
|
||||||
# generated by scripts/memory.sh
|
# generated by scripts/memory.sh
|
||||||
massif-*
|
massif-*
|
||||||
|
|
||||||
# MSVC files generated by CMake:
|
|
||||||
/*.sln
|
|
||||||
/*.vcxproj
|
|
||||||
/*.filters
|
|
||||||
|
|
||||||
# MSVC build artifacts:
|
# MSVC build artifacts:
|
||||||
*.exe
|
*.exe
|
||||||
*.pdb
|
*.pdb
|
||||||
*.ilk
|
*.ilk
|
||||||
*.lib
|
*.lib
|
||||||
|
|
||||||
# CMake generates *.dir/ folders for in-tree builds (used by MSVC projects), ignore all of those:
|
# Python build artifacts:
|
||||||
*.dir/
|
*.pyc
|
||||||
|
|
||||||
|
# Generated documentation:
|
||||||
|
/apidoc
|
||||||
|
|
||||||
|
# Editor navigation files:
|
||||||
|
/GPATH
|
||||||
|
/GRTAGS
|
||||||
|
/GSYMS
|
||||||
|
/GTAGS
|
||||||
|
/TAGS
|
||||||
|
/tags
|
||||||
|
|
9
Makefile
9
Makefile
|
@ -108,3 +108,12 @@ apidoc:
|
||||||
apidoc_clean:
|
apidoc_clean:
|
||||||
rm -rf apidoc
|
rm -rf apidoc
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
## Editor navigation files
|
||||||
|
C_SOURCE_FILES = $(wildcard include/*/*.h library/*.[hc] programs/*/*.[hc] tests/suites/*.function)
|
||||||
|
tags: $(C_SOURCE_FILES)
|
||||||
|
ctags -o $@ $(C_SOURCE_FILES)
|
||||||
|
TAGS: $(C_SOURCE_FILES)
|
||||||
|
etags -o $@ $(C_SOURCE_FILES)
|
||||||
|
GPATH GRTAGS GSYMS GTAGS: $(C_SOURCE_FILES)
|
||||||
|
ls $(C_SOURCE_FILES) | gtags -f - --gtagsconf .globalrc
|
||||||
|
|
Loading…
Reference in a new issue