libkernaux/Makefile.am

49 lines
1.0 KiB
Makefile
Raw Normal View History

2020-11-27 10:29:53 +00:00
SUBDIRS = include
2020-11-28 21:39:04 +00:00
AM_CFLAGS = -std=c99 -Wall -Wextra -I$(top_srcdir)/include
2020-11-27 09:28:13 +00:00
lib_LIBRARIES = libkernaux.a
2020-11-27 16:04:15 +00:00
TESTS = \
tests/test_multiboot2_helpers \
2020-11-28 21:24:50 +00:00
tests/test_multiboot2_print \
2020-11-30 00:25:30 +00:00
tests/test_multiboot2_validation \
tests/test_stdlib
2020-11-27 16:04:15 +00:00
2020-11-28 21:24:50 +00:00
noinst_PROGRAMS = \
$(TESTS) \
2020-11-29 12:57:34 +00:00
tests/multiboot2_print1 \
tests/multiboot2_print2
2020-11-27 16:04:15 +00:00
2020-11-27 09:28:13 +00:00
libkernaux_a_SOURCES = \
src/arch/i386.S \
src/multiboot2/helpers.c \
2020-11-28 00:32:11 +00:00
src/multiboot2/is_valid.c \
2020-11-28 01:27:41 +00:00
src/multiboot2/print.c \
2020-11-30 00:00:47 +00:00
src/pfa.c \
src/stdlib.c
2020-11-27 16:04:15 +00:00
2020-11-29 12:57:34 +00:00
tests_multiboot2_print1_SOURCES = \
2020-11-28 21:24:50 +00:00
$(libkernaux_a_SOURCES) \
2020-11-29 12:57:34 +00:00
tests/multiboot2_print1.c
tests_multiboot2_print2_SOURCES = \
$(libkernaux_a_SOURCES) \
tests/multiboot2_print2.c
2020-11-28 21:24:50 +00:00
tests_test_multiboot2_helpers_SOURCES = \
$(libkernaux_a_SOURCES) \
tests/test_multiboot2_helpers.c
2020-11-28 21:24:50 +00:00
tests_test_multiboot2_print_SOURCES = \
$(libkernaux_a_SOURCES) \
tests/test_multiboot2_print.c
tests_test_multiboot2_validation_SOURCES = \
$(libkernaux_a_SOURCES) \
tests/test_multiboot2_validation.c
2020-11-30 00:25:30 +00:00
tests_test_stdlib_SOURCES = \
$(libkernaux_a_SOURCES) \
tests/test_stdlib.c