libkernaux/Makefile.am

294 lines
6.9 KiB
Makefile
Raw Normal View History

2020-11-27 10:29:53 +00:00
SUBDIRS = include
2020-12-06 06:51:11 +00:00
AM_CFLAGS = \
-std=c99 \
2021-12-13 21:10:38 +00:00
-pedantic \
2020-12-06 06:51:11 +00:00
-Wall \
-Wextra \
-I$(top_builddir)/include \
2020-12-06 06:51:11 +00:00
-I$(top_srcdir)/include
2020-11-27 09:28:13 +00:00
2022-06-03 17:39:59 +00:00
CLEANFILES =
TESTS =
2020-11-27 09:28:13 +00:00
lib_LIBRARIES = libkernaux.a
2020-12-06 00:23:07 +00:00
noinst_PROGRAMS = $(TESTS)
2020-11-27 16:04:15 +00:00
2020-11-27 09:28:13 +00:00
libkernaux_a_SOURCES = \
2021-12-14 20:37:11 +00:00
src/assert.c \
src/libc.c
2020-11-27 16:04:15 +00:00
if ASM_I386
libkernaux_a_SOURCES += src/asm/i386.S
2020-11-30 03:29:58 +00:00
endif
2022-01-15 10:09:45 +00:00
if ASM_RISCV64
libkernaux_a_SOURCES += src/asm/riscv64.S
endif
if ASM_X86_64
libkernaux_a_SOURCES += src/asm/x86_64.S
2020-12-07 04:37:16 +00:00
endif
if ENABLE_TESTS
TESTS += \
examples/assert_guards \
examples/assert_simple \
examples/panic_guards \
examples/panic_simple
endif
2022-02-02 03:28:19 +00:00
if ENABLE_PIC
AM_CFLAGS += -fpic
else
AM_CFLAGS += -fno-pic
endif
if ENABLE_WERROR
AM_CFLAGS += -Werror
endif
if WITH_CMDLINE
2020-12-06 00:23:07 +00:00
libkernaux_a_SOURCES += src/cmdline.c
2022-01-17 12:33:28 +00:00
if ENABLE_TESTS
2020-12-06 00:23:07 +00:00
TESTS += \
examples/cmdline \
tests/test_cmdline
endif
2022-01-17 12:33:28 +00:00
endif
2020-12-06 00:23:07 +00:00
if WITH_CONSOLE
2022-01-10 04:45:02 +00:00
libkernaux_a_SOURCES += src/console.c
2020-12-06 00:23:07 +00:00
endif
if WITH_ELF
2021-12-13 22:07:00 +00:00
libkernaux_a_SOURCES += src/elf.c
2022-01-17 12:33:28 +00:00
if ENABLE_TESTS
2021-12-13 22:07:00 +00:00
TESTS += tests/test_elf
endif
2022-01-17 12:33:28 +00:00
endif
2021-12-13 22:07:00 +00:00
2022-01-11 08:58:47 +00:00
if WITH_FRAMEBUFFER
libkernaux_a_SOURCES += src/framebuffer.c
endif
if WITH_MBR
libkernaux_a_SOURCES += src/mbr.c
2022-01-17 12:33:28 +00:00
if ENABLE_TESTS
2022-01-17 06:34:42 +00:00
TESTS += tests/test_mbr
endif
2022-01-17 12:33:28 +00:00
endif
if WITH_MULTIBOOT2
2020-12-06 00:23:07 +00:00
libkernaux_a_SOURCES += \
src/multiboot2/enums_to_str.c \
src/multiboot2/header_helpers.c \
2022-01-13 13:50:51 +00:00
src/multiboot2/header_is_valid.c \
src/multiboot2/header_print.c \
2022-01-13 03:25:09 +00:00
src/multiboot2/info_helpers.c \
src/multiboot2/info_is_valid.c \
2022-01-13 03:12:28 +00:00
src/multiboot2/info_print.c
2022-01-17 12:33:28 +00:00
if ENABLE_TESTS
2020-12-06 00:23:07 +00:00
TESTS += \
2022-01-13 13:31:06 +00:00
tests/test_multiboot2_header_helpers \
2022-01-13 13:50:51 +00:00
tests/test_multiboot2_header_print \
tests/test_multiboot2_header_validation \
2022-01-13 03:25:09 +00:00
tests/test_multiboot2_info_helpers \
2022-01-13 03:12:28 +00:00
tests/test_multiboot2_info_print \
tests/test_multiboot2_info_validation
2020-12-06 00:23:07 +00:00
noinst_PROGRAMS += \
2022-01-13 13:37:37 +00:00
tests/multiboot2_header_print1 \
tests/multiboot2_header_print2 \
2022-01-13 03:12:28 +00:00
tests/multiboot2_info_print1 \
tests/multiboot2_info_print2
2020-12-06 00:23:07 +00:00
endif
2022-01-17 12:33:28 +00:00
endif
2020-12-06 00:23:07 +00:00
if WITH_NTOA
libkernaux_a_SOURCES += src/ntoa.c
if ENABLE_TESTS
2022-05-30 20:43:58 +00:00
TESTS += \
examples/ntoa \
tests/test_ntoa
endif
endif
if WITH_PFA
2020-12-06 00:23:07 +00:00
libkernaux_a_SOURCES += src/pfa.c
2022-01-17 12:33:28 +00:00
if ENABLE_TESTS
2021-12-13 23:56:31 +00:00
TESTS += \
examples/pfa \
2021-12-14 22:10:28 +00:00
tests/test_pfa \
tests/test_pfa_assert
2020-12-06 00:23:07 +00:00
endif
2022-01-17 12:33:28 +00:00
endif
2020-12-06 00:23:07 +00:00
2022-01-17 15:00:29 +00:00
if WITH_PRINTF
libkernaux_a_SOURCES += src/printf.c
if ENABLE_TESTS
TESTS += \
examples/printf \
examples/printf_va \
2022-01-20 10:28:24 +00:00
examples/snprintf \
2022-05-24 12:33:54 +00:00
examples/snprintf_va
endif
if ENABLE_TESTS_PYTHON
2022-06-03 17:39:59 +00:00
CLEANFILES += tests/test_printf_gen.c
TESTS += tests/test_printf_gen
endif
2022-01-17 15:00:29 +00:00
endif
2022-05-26 22:17:09 +00:00
if WITH_PRINTF_FMT
libkernaux_a_SOURCES += src/printf_fmt.c
2022-05-26 23:17:29 +00:00
if ENABLE_TESTS
TESTS += examples/printf_fmt
endif
if ENABLE_TESTS_PYTHON
2022-06-03 17:39:59 +00:00
CLEANFILES += tests/test_printf_fmt_gen.c
TESTS += tests/test_printf_fmt_gen
endif
endif
if WITH_UNITS
libkernaux_a_SOURCES += src/units.c
2022-01-17 12:33:28 +00:00
if ENABLE_TESTS
2021-12-13 20:23:22 +00:00
TESTS += \
examples/units_human \
tests/test_units_human
endif
2022-01-17 12:33:28 +00:00
endif
examples_assert_guards_LDADD = libkernaux.a
examples_assert_guards_SOURCES = examples/assert_guards.c
2021-12-18 00:51:12 +00:00
examples_assert_simple_LDADD = libkernaux.a
examples_assert_simple_SOURCES = examples/assert_simple.c
2021-12-14 20:37:11 +00:00
examples_cmdline_LDADD = libkernaux.a
examples_cmdline_SOURCES = examples/cmdline.c
examples_ntoa_LDADD = libkernaux.a
examples_ntoa_SOURCES = examples/ntoa.c
2022-05-30 20:43:58 +00:00
examples_panic_guards_LDADD = libkernaux.a
examples_panic_guards_SOURCES = examples/panic_guards.c
2022-01-20 17:18:18 +00:00
examples_panic_simple_LDADD = libkernaux.a
examples_panic_simple_SOURCES = examples/panic_simple.c
2022-01-20 16:51:54 +00:00
examples_pfa_LDADD = libkernaux.a
examples_pfa_SOURCES = examples/pfa.c
2021-12-13 23:56:31 +00:00
examples_printf_LDADD = libkernaux.a
examples_printf_SOURCES = examples/printf.c
2020-12-06 22:24:43 +00:00
examples_printf_fmt_LDADD = libkernaux.a
examples_printf_fmt_SOURCES = examples/printf_fmt.c
2022-05-26 23:17:29 +00:00
examples_printf_va_LDADD = libkernaux.a
examples_printf_va_SOURCES = examples/printf_va.c
2020-12-07 00:27:42 +00:00
examples_snprintf_LDADD = libkernaux.a
examples_snprintf_SOURCES = examples/snprintf.c
2022-01-20 10:28:24 +00:00
examples_snprintf_va_LDADD = libkernaux.a
examples_snprintf_va_SOURCES = examples/snprintf_va.c
2022-01-20 10:28:24 +00:00
examples_units_human_LDADD = libkernaux.a
examples_units_human_SOURCES = examples/units_human.c
tests_multiboot2_header_print1_LDADD = libkernaux.a
2022-01-13 13:37:37 +00:00
tests_multiboot2_header_print1_SOURCES = \
tests/multiboot2_header_print1.c \
tests/multiboot2_header_example1.h
tests_multiboot2_header_print2_LDADD = libkernaux.a
2022-01-13 13:37:37 +00:00
tests_multiboot2_header_print2_SOURCES = \
tests/multiboot2_header_print2.c \
tests/multiboot2_header_example2.h
tests_multiboot2_info_print1_LDADD = libkernaux.a
2022-01-13 03:12:28 +00:00
tests_multiboot2_info_print1_SOURCES = \
tests/multiboot2_info_print1.c \
2022-01-13 04:05:34 +00:00
tests/multiboot2_info_example1.h
2020-11-29 12:57:34 +00:00
tests_multiboot2_info_print2_LDADD = libkernaux.a
2022-01-13 03:12:28 +00:00
tests_multiboot2_info_print2_SOURCES = \
tests/multiboot2_info_print2.c \
2022-01-13 04:05:34 +00:00
tests/multiboot2_info_example2.h
2020-11-28 21:24:50 +00:00
tests_test_cmdline_LDADD = libkernaux.a
tests_test_cmdline_SOURCES = tests/test_cmdline.c
2020-12-01 19:55:16 +00:00
tests_test_elf_LDADD = libkernaux.a
tests_test_elf_SOURCES = tests/test_elf.c
2021-12-12 20:30:27 +00:00
tests_test_mbr_LDADD = libkernaux.a
tests_test_mbr_SOURCES = tests/test_mbr.c
2022-01-17 06:34:42 +00:00
tests_test_multiboot2_header_helpers_LDADD = libkernaux.a
2022-01-13 13:31:06 +00:00
tests_test_multiboot2_header_helpers_SOURCES = \
tests/test_multiboot2_header_helpers.c \
tests/multiboot2_header_example1.h \
tests/multiboot2_header_example2.h
tests_test_multiboot2_header_print_LDADD = libkernaux.a
2022-01-13 13:50:51 +00:00
tests_test_multiboot2_header_print_SOURCES = \
tests/test_multiboot2_header_print.c
tests_test_multiboot2_header_validation_LDADD = libkernaux.a
2022-01-13 13:50:51 +00:00
tests_test_multiboot2_header_validation_SOURCES = \
tests/test_multiboot2_header_validation.c \
tests/multiboot2_header_example1.h \
tests/multiboot2_header_example2.h
tests_test_multiboot2_info_helpers_LDADD = libkernaux.a
2022-01-13 03:25:09 +00:00
tests_test_multiboot2_info_helpers_SOURCES = \
tests/test_multiboot2_info_helpers.c \
2022-01-13 04:05:34 +00:00
tests/multiboot2_info_example1.h \
tests/multiboot2_info_example2.h
tests_test_multiboot2_info_print_LDADD = libkernaux.a
2022-01-13 03:12:28 +00:00
tests_test_multiboot2_info_print_SOURCES = \
tests/test_multiboot2_info_print.c
2020-11-28 21:24:50 +00:00
tests_test_multiboot2_info_validation_LDADD = libkernaux.a
tests_test_multiboot2_info_validation_SOURCES = \
tests/test_multiboot2_info_validation.c \
2022-01-13 04:05:34 +00:00
tests/multiboot2_info_example1.h \
tests/multiboot2_info_example2.h
2020-11-30 00:25:30 +00:00
tests_test_ntoa_LDADD = libkernaux.a
tests_test_ntoa_SOURCES = tests/test_ntoa.c
2022-01-19 10:38:29 +00:00
tests_test_pfa_LDADD = libkernaux.a
tests_test_pfa_SOURCES = tests/test_pfa.c
2020-11-30 18:32:27 +00:00
tests_test_pfa_assert_LDADD = libkernaux.a
tests_test_pfa_assert_SOURCES = tests/test_pfa_assert.c
2021-12-14 22:10:28 +00:00
tests_test_printf_fmt_gen_LDADD = libkernaux.a
tests_test_printf_fmt_gen_SOURCES = \
tests/test_printf_fmt_gen.c \
tests/printf_fmt_gen.py \
tests/printf_fmt_gen.jinja \
2022-05-27 02:25:10 +00:00
common/printf_fmt.yml
tests_test_printf_gen_LDADD = libkernaux.a
tests_test_printf_gen_SOURCES = \
2022-05-24 13:30:00 +00:00
tests/test_printf_gen.c \
tests/printf_gen.py \
tests/printf_gen.jinja \
common/printf.yml \
common/printf_orig.yml
tests_test_units_human_LDADD = libkernaux.a
tests_test_units_human_SOURCES = tests/test_units_human.c
tests/test_printf_fmt_gen.c: tests/printf_fmt_gen.py tests/printf_fmt_gen.jinja common/printf_fmt.yml
python3 tests/printf_fmt_gen.py
tests/test_printf_gen.c: tests/printf_gen.py tests/printf_gen.jinja common/printf.yml common/printf_orig.yml
python3 tests/printf_gen.py