mirror of
https://github.com/tailix/libkernaux.git
synced 2024-10-30 11:54:01 -04:00
19 lines
352 B
Makefile
19 lines
352 B
Makefile
SUBDIRS = include
|
|
|
|
AM_CFLAGS = -std=c99 -I$(top_srcdir)/include
|
|
|
|
lib_LIBRARIES = libkernaux.a
|
|
|
|
TESTS = \
|
|
tests/test_multiboot2_validation
|
|
|
|
noinst_PROGRAMS = $(TESTS)
|
|
|
|
libkernaux_a_SOURCES = \
|
|
src/arch/i386.S \
|
|
src/multiboot2.c \
|
|
src/pfa.c
|
|
|
|
tests_test_multiboot2_validation_SOURCES = \
|
|
$(libkernaux_a_SOURCES) \
|
|
tests/test_multiboot2_validation.c
|