diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-09 13:16:35 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-09 13:16:35 +0000 |
commit | e2bbf175a2184bd76f6c54ccf8456babeb1a46fc (patch) | |
tree | f0b76550d6e6f500ada964a3a4ee933a45e5a6f1 /.gitignore | |
parent | Initial commit. (diff) | |
download | frr-e2bbf175a2184bd76f6c54ccf8456babeb1a46fc.tar.xz frr-e2bbf175a2184bd76f6c54ccf8456babeb1a46fc.zip |
Adding upstream version 9.1.upstream/9.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 119 |
1 files changed, 119 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a66e3cc --- /dev/null +++ b/.gitignore @@ -0,0 +1,119 @@ +### autoconf/automake root stuff + +/compile +/config.log +/config.h +/config.cache +/config.status +/config.guess +/config.sub +/config.version +/ltmain.sh +/stamp-h +/stamp-h[0-9]* +*-stamp +/INSTALL +/depcomp +/missing +/install-sh +/mkinstalldirs +/ylwrap +/autom4te*.cache +/configure.lineno +/configure +/config.h.in +/confdefs.h +/conftest +/conftest.err +/aclocal.m4 +/libtool +/libtool.orig +/test-driver +/test-suite.log + +/Makefile +/Makefile.in + +/symalyzer_report.html +/jquery-3.4.1.min.js +/jquery-3.4.1.min.js.tmp + +### autoconf/automake subdir stuff + +.deps +.libs + +### build outputs + +*.o +*.lo +*.a +*.la +*.so +*.loT +*.pb.h +*.pb-c.h +*.pb-c.c +*.pb.cc +*_clippy.c +*.bc +*.ll +*.cg.json +*.cg.dot +*.cg.svg +*.xref + +### gcov outputs + +*.gcno +*.gcov +*.gcda + +### dist + +*.tar.?z +*.tar.?z.asc +*.tar.asc +*.deb +*.ddeb +*.dsc +*.changes + +### other garbage + +.nfs* +.arch-inventory +.arch-ids +{arch} +build +.cache +.dir-locals.el +.msg +.rebase-* +*~ +*.bak +*.swp +*.pyc +*.dmp +__pycache__ +*.patch +*.diff +cscope.* +TAGS +tags +GTAGS +GSYMS +GRTAGS +GPATH +compile_commands.json +.ccls +.ccls-cache +.dirstamp +refix +.vscode +.kitchen +.emacs.desktop* + +/test-suite.log +pceplib/test/*.log +pceplib/test/*.trs |