Update gitignore to catch all of the autoconf-generated files
ci/woodpecker/push/woodpecker Pipeline was successful
Details
ci/woodpecker/push/woodpecker Pipeline was successful
Details
parent
80b5011e69
commit
d8924aced5
|
@ -1,13 +1,19 @@
|
||||||
|
Makefile
|
||||||
|
Makefile.in
|
||||||
|
.dirstamp
|
||||||
|
stamp-h*
|
||||||
*.h.in~
|
*.h.in~
|
||||||
*.o
|
*.o
|
||||||
*.og
|
*.og
|
||||||
*.op
|
*.op
|
||||||
|
*.lo
|
||||||
*.gcno
|
*.gcno
|
||||||
*.gcda
|
*.gcda
|
||||||
*.gcov
|
*.gcov
|
||||||
core
|
core
|
||||||
.gdb_history
|
.gdb_history
|
||||||
|
|
||||||
|
.libs
|
||||||
.deps
|
.deps
|
||||||
|
|
||||||
*.exe
|
*.exe
|
||||||
|
@ -16,8 +22,8 @@ core
|
||||||
*.orig
|
*.orig
|
||||||
*.patch
|
*.patch
|
||||||
*.rej
|
*.rej
|
||||||
/tests/run.sh
|
|
||||||
|
|
||||||
|
# autoconf stuff
|
||||||
/aclocal.m4
|
/aclocal.m4
|
||||||
/autom4te.cache/
|
/autom4te.cache/
|
||||||
/buildsys.mk
|
/buildsys.mk
|
||||||
|
@ -26,8 +32,47 @@ core
|
||||||
/config.log
|
/config.log
|
||||||
/config.status
|
/config.status
|
||||||
/configure
|
/configure
|
||||||
|
/compile
|
||||||
|
/config.guess
|
||||||
|
/config.sub
|
||||||
|
/depcomp
|
||||||
|
/install-sh
|
||||||
|
/missing
|
||||||
|
|
||||||
|
# programs
|
||||||
|
/bomtool
|
||||||
/pkgconf
|
/pkgconf
|
||||||
/pkgconf-gcov
|
/pkgconf-gcov
|
||||||
/pkgconf-profile
|
/pkgconf-profile
|
||||||
|
|
||||||
Makefile
|
# libtool
|
||||||
|
/libtool
|
||||||
|
/ltmain.sh
|
||||||
|
/libpkgconf.la
|
||||||
|
/m4/libtool.m4
|
||||||
|
/m4/lt~obsolete.m4
|
||||||
|
/m4/ltoptions.m4
|
||||||
|
/m4/ltsugar.m4
|
||||||
|
/m4/ltversion.m4
|
||||||
|
|
||||||
|
# pkgconfig file
|
||||||
|
/libpkgconf.pc
|
||||||
|
|
||||||
|
# autoheader
|
||||||
|
/libpkgconf/config.h
|
||||||
|
/libpkgconf/config.h.in
|
||||||
|
|
||||||
|
# tests
|
||||||
|
/Kyuafile
|
||||||
|
/tests/Kyuafile
|
||||||
|
/tests/basic
|
||||||
|
/tests/builtins
|
||||||
|
/tests/conflicts
|
||||||
|
/tests/framework
|
||||||
|
/tests/parser
|
||||||
|
/tests/provides
|
||||||
|
/tests/regress
|
||||||
|
/tests/requires
|
||||||
|
/tests/sysroot
|
||||||
|
/tests/test_env.sh
|
||||||
|
/tests/version
|
||||||
|
|
Loading…
Reference in New Issue