1
0
Fork 0
mirror of https://github.com/tailix/libkernaux.git synced 2024-11-27 11:14:42 -05:00
libkernaux/Makefile.am

32 lines
649 B
Text
Raw Normal View History

2020-11-27 05:29:53 -05:00
SUBDIRS = include
2020-11-28 16:39:04 -05:00
AM_CFLAGS = -std=c99 -Wall -Wextra -I$(top_srcdir)/include
2020-11-27 04:28:13 -05:00
lib_LIBRARIES = libkernaux.a
2020-11-27 11:04:15 -05:00
TESTS = \
2020-11-28 16:24:50 -05:00
tests/test_multiboot2_print \
tests/test_multiboot2_validation
2020-11-27 11:04:15 -05:00
2020-11-28 16:24:50 -05:00
noinst_PROGRAMS = \
$(TESTS) \
tests/multiboot2_print
2020-11-27 11:04:15 -05:00
2020-11-27 04:28:13 -05:00
libkernaux_a_SOURCES = \
src/arch/i386.S \
2020-11-27 19:32:11 -05:00
src/multiboot2/is_valid.c \
2020-11-27 20:27:41 -05:00
src/multiboot2/print.c \
2020-11-27 04:28:13 -05:00
src/pfa.c
2020-11-27 11:04:15 -05:00
2020-11-28 16:24:50 -05:00
tests_multiboot2_print_SOURCES = \
$(libkernaux_a_SOURCES) \
tests/multiboot2_print.c
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