mirror of
https://github.com/tailix/libkernaux.git
synced 2024-11-13 11:04:27 -05:00
30 lines
471 B
Makefile
30 lines
471 B
Makefile
include $(top_srcdir)/make/shared.am
|
|
|
|
SUBDIRS = include
|
|
|
|
if ENABLE_SPLIT_LIBC
|
|
lib_LTLIBRARIES = libc.la
|
|
else
|
|
EXTRA_LTLIBRARIES = libc.la
|
|
endif
|
|
|
|
libc_la_SOURCES = \
|
|
src/ctype.c \
|
|
src/errno.c \
|
|
src/kernaux.c \
|
|
src/stdlib.c \
|
|
src/string.c
|
|
|
|
if ASM_I386
|
|
libc_la_SOURCES += \
|
|
src/asm/i386/longjmp.S \
|
|
src/asm/i386/setjmp.S
|
|
endif
|
|
|
|
if ASM_X86_64
|
|
libc_la_SOURCES += \
|
|
src/asm/x86_64/longjmp.S \
|
|
src/asm/x86_64/setjmp.S
|
|
endif
|
|
|
|
# TODO: implement setjmp/longjmp for riscv64
|