1
0
Fork 0
mirror of https://github.com/tailix/libkernaux.git synced 2024-10-30 11:54:01 -04:00
libkernaux/.gitignore

151 lines
2.7 KiB
Text
Raw Normal View History

2022-01-16 04:15:17 -05:00
##########################
# Common generated files #
##########################
2020-11-27 04:28:13 -05:00
*.a
2022-01-15 08:24:23 -05:00
*.c.d
*.la
*.lo
2020-11-27 04:28:13 -05:00
*.o
2022-01-16 08:57:22 -05:00
.deps/
.dirstamp
.libs/
2020-11-27 04:28:13 -05:00
2022-01-16 04:15:17 -05:00
############################
# Always generated in root #
############################
2022-01-30 20:12:37 -05:00
/INSTALL
2020-11-27 04:28:13 -05:00
/aclocal.m4
/ar-lib
/autom4te.cache/
/autoscan.log
/compile
/config.guess
2020-12-06 23:42:52 -05:00
/config.h.in
/config.h.in~
/config.sub
2020-11-27 04:28:13 -05:00
/configure
/configure.ac~
/configure~
2020-11-27 04:28:13 -05:00
/depcomp
/install-sh
/ltmain.sh
2020-11-27 04:28:13 -05:00
/missing
2020-11-27 11:04:15 -05:00
/test-driver
2022-01-16 04:15:17 -05:00
/m4/*
!/m4/.keep
2022-06-02 10:43:38 -04:00
# Custom
2022-01-16 04:23:48 -05:00
/Makefile.in
2022-12-03 16:44:40 -05:00
/examples/Makefile.in
2022-12-17 07:26:20 -05:00
/fixtures/Makefile.in
2022-01-16 04:15:17 -05:00
/include/Makefile.in
2022-12-03 16:44:40 -05:00
/libc/Makefile.in
/libc/include/Makefile.in
/tests/Makefile.in
2022-01-16 04:15:17 -05:00
###########################################
# Only generated when configuring in root #
###########################################
/config.h
/config.log
/config.status
/libtool
2022-01-16 04:15:17 -05:00
/stamp-h1
# Temporary
/confcache
/confdefs.h
/confinc.mk
/confmf.BSD
/confmf.GNU
/conftest.c
/conftest.err
2022-06-12 04:42:43 -04:00
/examples/test-suite.log
2022-01-16 04:15:17 -05:00
/examples/*.log
/examples/*.trs
2022-06-12 04:42:43 -04:00
/tests/test-suite.log
/tests/test_*.log
/tests/test_*.trs
2022-01-16 04:15:17 -05:00
2022-06-02 10:43:38 -04:00
# Custom
/Makefile
2022-12-03 16:44:40 -05:00
/examples/Makefile
2022-12-17 07:26:20 -05:00
/fixtures/Makefile
2022-06-02 10:43:38 -04:00
/include/Makefile
2022-12-03 16:44:40 -05:00
/libc/Makefile
/libc/include/Makefile
/tests/Makefile
2022-06-13 03:02:05 -04:00
/include/kernaux/version.h
2022-06-02 10:43:38 -04:00
2022-12-17 07:26:20 -05:00
/fixtures/multiboot2_bin_examples_gen
/fixtures/multiboot2_bin_examples_gen.c
/fixtures/multiboot2_header_example0.bin
/fixtures/multiboot2_header_example1.bin
/fixtures/multiboot2_header_example2.bin
/fixtures/multiboot2_info_example0.bin
/fixtures/multiboot2_info_example1.bin
/fixtures/multiboot2_info_example2.bin
/examples/assert
/examples/cmdline
/examples/generic_display
2022-06-21 04:37:52 -04:00
/examples/generic_malloc
2022-06-20 17:28:35 -04:00
/examples/generic_mutex
/examples/macro_bits
/examples/macro_cast
/examples/macro_container_of
2022-11-28 20:19:35 -05:00
/examples/macro_packing
2022-12-11 08:40:49 -05:00
/examples/macro_static_test
2022-06-15 03:58:14 -04:00
/examples/memmap
2022-11-30 18:49:16 -05:00
/examples/multiboot2_header_macro
2022-05-30 16:43:58 -04:00
/examples/ntoa
/examples/panic
2021-12-13 18:56:31 -05:00
/examples/pfa
/examples/printf_file
/examples/printf_file_va
2022-05-26 19:17:29 -04:00
/examples/printf_fmt
/examples/printf_str
/examples/printf_str_va
/examples/units_human
2021-12-14 15:37:11 -05:00
/tests/multiboot2_header_print0
2022-01-13 08:37:37 -05:00
/tests/multiboot2_header_print1
/tests/multiboot2_header_print2
/tests/multiboot2_info_print0
2022-01-12 22:12:28 -05:00
/tests/multiboot2_info_print1
/tests/multiboot2_info_print2
/tests/test_arch_i386
2020-12-01 14:55:16 -05:00
/tests/test_cmdline
2022-06-07 19:00:46 -04:00
/tests/test_cmdline_gen
/tests/test_cmdline_gen.c
2021-12-12 15:30:27 -05:00
/tests/test_elf
/tests/test_free_list
2022-01-17 01:34:42 -05:00
/tests/test_mbr
/tests/test_memmap
/tests/test_multiboot2_common_packing
2022-01-13 08:31:06 -05:00
/tests/test_multiboot2_header_helpers
2022-01-13 08:50:51 -05:00
/tests/test_multiboot2_header_print
/tests/test_multiboot2_header_validation
2022-01-12 22:25:09 -05:00
/tests/test_multiboot2_info_helpers
2022-01-12 22:12:28 -05:00
/tests/test_multiboot2_info_print
/tests/test_multiboot2_info_validation
/tests/test_ntoa
/tests/test_ntoa_assert
2020-11-30 13:32:27 -05:00
/tests/test_pfa
2021-12-14 17:10:28 -05:00
/tests/test_pfa_assert
2022-06-27 10:46:29 -04:00
/tests/test_printf
/tests/test_printf_fmt_gen
/tests/test_printf_fmt_gen.c
/tests/test_printf_gen
/tests/test_printf_gen.c
2021-12-13 15:23:22 -05:00
/tests/test_units_human