libkernaux/Makefile.am

37 lines
770 B
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 = \
2020-11-28 21:24:50 +00:00
tests/test_multiboot2_print \
tests/test_multiboot2_validation
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 \
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-27 09:28:13 +00:00
src/pfa.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_print_SOURCES = \
$(libkernaux_a_SOURCES) \
tests/test_multiboot2_print.c
tests_test_multiboot2_validation_SOURCES = \
$(libkernaux_a_SOURCES) \
tests/test_multiboot2_validation.c