2020-11-27 15:29:53 +05:00
|
|
|
SUBDIRS = include
|
|
|
|
|
2020-12-06 11:51:11 +05:00
|
|
|
AM_CFLAGS = \
|
|
|
|
-std=c99 \
|
2021-12-14 02:10:38 +05:00
|
|
|
-pedantic \
|
2020-12-06 11:51:11 +05:00
|
|
|
-Wall \
|
|
|
|
-Wextra \
|
2022-01-11 14:33:21 +05:00
|
|
|
-Wno-cast-function-type \
|
2020-12-06 11:51:11 +05:00
|
|
|
-I$(top_srcdir)/include
|
2020-11-27 14:28:13 +05:00
|
|
|
|
|
|
|
lib_LIBRARIES = libkernaux.a
|
|
|
|
|
2020-11-27 21:04:15 +05:00
|
|
|
TESTS = \
|
2021-12-20 07:22:43 +05:00
|
|
|
examples/assert_guards \
|
2021-12-18 06:27:45 +05:00
|
|
|
examples/assert_simple \
|
2020-12-07 03:24:43 +05:00
|
|
|
examples/printf \
|
2020-12-07 05:27:42 +05:00
|
|
|
examples/printf_va \
|
2021-12-15 15:45:40 +05:00
|
|
|
tests/test_itoa \
|
|
|
|
tests/test_printf
|
2020-11-27 21:04:15 +05:00
|
|
|
|
2020-12-06 05:23:07 +05:00
|
|
|
noinst_PROGRAMS = $(TESTS)
|
2020-11-27 21:04:15 +05:00
|
|
|
|
2020-11-27 14:28:13 +05:00
|
|
|
libkernaux_a_SOURCES = \
|
2021-12-15 01:37:11 +05:00
|
|
|
src/assert.c \
|
2021-12-15 15:45:40 +05:00
|
|
|
src/itoa.c \
|
|
|
|
src/libc.c \
|
|
|
|
src/printf.c
|
2020-11-27 21:04:15 +05:00
|
|
|
|
2021-12-20 11:14:40 +05:00
|
|
|
if ASM_I386
|
|
|
|
libkernaux_a_SOURCES += src/asm/i386.S
|
2020-11-30 08:29:58 +05:00
|
|
|
endif
|
|
|
|
|
2022-01-15 15:09:45 +05:00
|
|
|
if ASM_RISCV64
|
|
|
|
libkernaux_a_SOURCES += src/asm/riscv64.S
|
|
|
|
endif
|
|
|
|
|
2021-12-20 11:14:40 +05:00
|
|
|
if ASM_X86_64
|
|
|
|
libkernaux_a_SOURCES += src/asm/x86_64.S
|
2020-12-07 09:37:16 +05:00
|
|
|
endif
|
|
|
|
|
2021-12-18 06:27:45 +05:00
|
|
|
if WITH_CMDLINE
|
2020-12-06 05:23:07 +05:00
|
|
|
libkernaux_a_SOURCES += src/cmdline.c
|
|
|
|
TESTS += \
|
|
|
|
examples/cmdline \
|
|
|
|
tests/test_cmdline
|
|
|
|
endif
|
|
|
|
|
2021-12-18 06:27:45 +05:00
|
|
|
if WITH_CONSOLE
|
2022-01-10 09:45:02 +05:00
|
|
|
libkernaux_a_SOURCES += src/console.c
|
2020-12-06 05:23:07 +05:00
|
|
|
endif
|
|
|
|
|
2021-12-18 06:27:45 +05:00
|
|
|
if WITH_ELF
|
2021-12-14 03:07:00 +05:00
|
|
|
libkernaux_a_SOURCES += src/elf.c
|
|
|
|
TESTS += tests/test_elf
|
|
|
|
endif
|
|
|
|
|
2022-01-11 13:58:47 +05:00
|
|
|
if WITH_FRAMEBUFFER
|
|
|
|
libkernaux_a_SOURCES += src/framebuffer.c
|
|
|
|
endif
|
|
|
|
|
2021-12-18 06:27:45 +05:00
|
|
|
if WITH_MULTIBOOT2
|
2020-12-06 05:23:07 +05:00
|
|
|
libkernaux_a_SOURCES += \
|
2022-01-13 19:07:13 +05:00
|
|
|
src/multiboot2/enums_to_str.c \
|
2022-01-13 17:44:22 +05:00
|
|
|
src/multiboot2/header_helpers.c \
|
2022-01-13 18:50:51 +05:00
|
|
|
src/multiboot2/header_is_valid.c \
|
|
|
|
src/multiboot2/header_print.c \
|
2022-01-13 08:25:09 +05:00
|
|
|
src/multiboot2/info_helpers.c \
|
2022-01-13 08:10:33 +05:00
|
|
|
src/multiboot2/info_is_valid.c \
|
2022-01-13 08:12:28 +05:00
|
|
|
src/multiboot2/info_print.c
|
2020-12-06 05:23:07 +05:00
|
|
|
TESTS += \
|
2022-01-13 18:31:06 +05:00
|
|
|
tests/test_multiboot2_header_helpers \
|
2022-01-13 18:50:51 +05:00
|
|
|
tests/test_multiboot2_header_print \
|
|
|
|
tests/test_multiboot2_header_validation \
|
2022-01-13 08:25:09 +05:00
|
|
|
tests/test_multiboot2_info_helpers \
|
2022-01-13 08:12:28 +05:00
|
|
|
tests/test_multiboot2_info_print \
|
2022-01-13 08:10:33 +05:00
|
|
|
tests/test_multiboot2_info_validation
|
2020-12-06 05:23:07 +05:00
|
|
|
noinst_PROGRAMS += \
|
2022-01-13 18:37:37 +05:00
|
|
|
tests/multiboot2_header_print1 \
|
|
|
|
tests/multiboot2_header_print2 \
|
2022-01-13 08:12:28 +05:00
|
|
|
tests/multiboot2_info_print1 \
|
|
|
|
tests/multiboot2_info_print2
|
2020-12-06 05:23:07 +05:00
|
|
|
endif
|
|
|
|
|
2021-12-18 06:27:45 +05:00
|
|
|
if WITH_PFA
|
2020-12-06 05:23:07 +05:00
|
|
|
libkernaux_a_SOURCES += src/pfa.c
|
2021-12-14 04:56:31 +05:00
|
|
|
TESTS += \
|
|
|
|
examples/pfa \
|
2021-12-15 03:10:28 +05:00
|
|
|
tests/test_pfa \
|
|
|
|
tests/test_pfa_assert
|
2020-12-06 05:23:07 +05:00
|
|
|
endif
|
|
|
|
|
2021-12-18 06:27:45 +05:00
|
|
|
if WITH_UNITS
|
2021-12-14 00:36:36 +05:00
|
|
|
libkernaux_a_SOURCES += src/units.c
|
2021-12-14 01:23:22 +05:00
|
|
|
TESTS += \
|
|
|
|
examples/units_human \
|
|
|
|
tests/test_units_human
|
2021-12-14 00:36:36 +05:00
|
|
|
endif
|
|
|
|
|
2021-12-20 07:22:43 +05:00
|
|
|
examples_assert_guards_SOURCES = \
|
2021-12-18 05:51:12 +05:00
|
|
|
$(libkernaux_a_SOURCES) \
|
2021-12-20 07:22:43 +05:00
|
|
|
examples/assert_guards.c
|
2021-12-18 05:51:12 +05:00
|
|
|
|
|
|
|
examples_assert_simple_SOURCES = \
|
2021-12-15 01:37:11 +05:00
|
|
|
$(libkernaux_a_SOURCES) \
|
2021-12-18 05:51:12 +05:00
|
|
|
examples/assert_simple.c
|
2021-12-15 01:37:11 +05:00
|
|
|
|
2020-12-06 03:58:34 +05:00
|
|
|
examples_cmdline_SOURCES = \
|
|
|
|
$(libkernaux_a_SOURCES) \
|
|
|
|
examples/cmdline.c
|
|
|
|
|
2021-12-14 04:56:31 +05:00
|
|
|
examples_pfa_SOURCES = \
|
|
|
|
$(libkernaux_a_SOURCES) \
|
|
|
|
examples/pfa.c
|
|
|
|
|
2020-12-07 03:24:43 +05:00
|
|
|
examples_printf_SOURCES = \
|
|
|
|
$(libkernaux_a_SOURCES) \
|
|
|
|
examples/printf.c
|
|
|
|
|
2020-12-07 05:27:42 +05:00
|
|
|
examples_printf_va_SOURCES = \
|
|
|
|
$(libkernaux_a_SOURCES) \
|
|
|
|
examples/printf_va.c
|
|
|
|
|
2021-12-14 00:36:36 +05:00
|
|
|
examples_units_human_SOURCES = \
|
|
|
|
$(libkernaux_a_SOURCES) \
|
|
|
|
examples/units_human.c
|
|
|
|
|
2022-01-13 18:37:37 +05:00
|
|
|
tests_multiboot2_header_print1_SOURCES = \
|
|
|
|
$(libkernaux_a_SOURCES) \
|
|
|
|
tests/multiboot2_header_print1.c \
|
|
|
|
tests/multiboot2_header_example1.h
|
|
|
|
|
|
|
|
tests_multiboot2_header_print2_SOURCES = \
|
|
|
|
$(libkernaux_a_SOURCES) \
|
|
|
|
tests/multiboot2_header_print2.c \
|
|
|
|
tests/multiboot2_header_example2.h
|
|
|
|
|
2022-01-13 08:12:28 +05:00
|
|
|
tests_multiboot2_info_print1_SOURCES = \
|
2020-11-29 02:24:50 +05:00
|
|
|
$(libkernaux_a_SOURCES) \
|
2022-01-13 08:12:28 +05:00
|
|
|
tests/multiboot2_info_print1.c \
|
2022-01-13 09:05:34 +05:00
|
|
|
tests/multiboot2_info_example1.h
|
2020-11-29 17:57:34 +05:00
|
|
|
|
2022-01-13 08:12:28 +05:00
|
|
|
tests_multiboot2_info_print2_SOURCES = \
|
2020-11-29 17:57:34 +05:00
|
|
|
$(libkernaux_a_SOURCES) \
|
2022-01-13 08:12:28 +05:00
|
|
|
tests/multiboot2_info_print2.c \
|
2022-01-13 09:05:34 +05:00
|
|
|
tests/multiboot2_info_example2.h
|
2020-11-29 02:24:50 +05:00
|
|
|
|
2020-12-02 00:55:16 +05:00
|
|
|
tests_test_cmdline_SOURCES = \
|
|
|
|
$(libkernaux_a_SOURCES) \
|
|
|
|
tests/test_cmdline.c
|
|
|
|
|
2021-12-13 01:30:27 +05:00
|
|
|
tests_test_elf_SOURCES = \
|
|
|
|
$(libkernaux_a_SOURCES) \
|
|
|
|
tests/test_elf.c
|
|
|
|
|
2021-12-15 15:45:40 +05:00
|
|
|
tests_test_itoa_SOURCES = \
|
|
|
|
$(libkernaux_a_SOURCES) \
|
|
|
|
tests/test_itoa.c
|
|
|
|
|
2022-01-13 18:31:06 +05:00
|
|
|
tests_test_multiboot2_header_helpers_SOURCES = \
|
|
|
|
$(libkernaux_a_SOURCES) \
|
|
|
|
tests/test_multiboot2_header_helpers.c \
|
|
|
|
tests/multiboot2_header_example1.h \
|
|
|
|
tests/multiboot2_header_example2.h
|
|
|
|
|
2022-01-13 18:50:51 +05:00
|
|
|
tests_test_multiboot2_header_print_SOURCES = \
|
|
|
|
$(libkernaux_a_SOURCES) \
|
|
|
|
tests/test_multiboot2_header_print.c
|
|
|
|
|
|
|
|
tests_test_multiboot2_header_validation_SOURCES = \
|
|
|
|
$(libkernaux_a_SOURCES) \
|
|
|
|
tests/test_multiboot2_header_validation.c \
|
|
|
|
tests/multiboot2_header_example1.h \
|
|
|
|
tests/multiboot2_header_example2.h
|
|
|
|
|
2022-01-13 08:25:09 +05:00
|
|
|
tests_test_multiboot2_info_helpers_SOURCES = \
|
2020-11-29 23:02:19 +05:00
|
|
|
$(libkernaux_a_SOURCES) \
|
2022-01-13 08:25:09 +05:00
|
|
|
tests/test_multiboot2_info_helpers.c \
|
2022-01-13 09:05:34 +05:00
|
|
|
tests/multiboot2_info_example1.h \
|
|
|
|
tests/multiboot2_info_example2.h
|
2020-11-29 23:02:19 +05:00
|
|
|
|
2022-01-13 08:12:28 +05:00
|
|
|
tests_test_multiboot2_info_print_SOURCES = \
|
2020-11-29 02:24:50 +05:00
|
|
|
$(libkernaux_a_SOURCES) \
|
2022-01-13 08:12:28 +05:00
|
|
|
tests/test_multiboot2_info_print.c
|
2020-11-29 02:24:50 +05:00
|
|
|
|
2022-01-13 08:10:33 +05:00
|
|
|
tests_test_multiboot2_info_validation_SOURCES = \
|
2020-11-28 02:48:50 +05:00
|
|
|
$(libkernaux_a_SOURCES) \
|
2022-01-13 08:10:33 +05:00
|
|
|
tests/test_multiboot2_info_validation.c \
|
2022-01-13 09:05:34 +05:00
|
|
|
tests/multiboot2_info_example1.h \
|
|
|
|
tests/multiboot2_info_example2.h
|
2020-11-30 05:25:30 +05:00
|
|
|
|
2020-11-30 23:32:27 +05:00
|
|
|
tests_test_pfa_SOURCES = \
|
|
|
|
$(libkernaux_a_SOURCES) \
|
|
|
|
tests/test_pfa.c
|
|
|
|
|
2021-12-15 03:10:28 +05:00
|
|
|
tests_test_pfa_assert_SOURCES = \
|
|
|
|
$(libkernaux_a_SOURCES) \
|
|
|
|
tests/test_pfa_assert.c
|
|
|
|
|
2020-12-07 02:37:53 +05:00
|
|
|
tests_test_printf_SOURCES = \
|
|
|
|
$(libkernaux_a_SOURCES) \
|
|
|
|
tests/test_printf.c
|
|
|
|
|
2021-12-14 01:23:22 +05:00
|
|
|
tests_test_units_human_SOURCES = \
|
|
|
|
$(libkernaux_a_SOURCES) \
|
|
|
|
tests/test_units_human.c
|