1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
# Generic ignores for libtool project
Makefile.in
Makefile
/INSTALL
/autom4te.cache
/aclocal.m4
/compile
/configure
/configure~
/depcomp
/install-sh
/missing
/stamp-h1
/m4/*.m4
/config.guess
/config.sub
/config.log
/config.status
/ltmain.sh
/libtool
*/.deps/*
*.la
*.lo
*.o
*/.libs/*
*/config.h
*/config.h.in
*/config.h.in~
*/stamp-h1
/test-driver
/coverage.info
/coveragereport/*
*.gcno
/.vscode/*
*~
# Generic ignores for cmake project
/out/*
# Explicit stuff
!/m4/ax_check_openssl.m4
!/m4/doxygen.m4
!/m4/ax_code_coverage.m4
!/m4/ax_valgrind_check.m4
!/m4/jwt_weak_alias.m4
/doxygen-doc/*
/libjwt/libjwt.pc
/dist/libjwt.spec
/rpmbuild
# Cmake
/build
|