1
0
Fork 0
mirror of https://github.com/tailix/libkernaux.git synced 2024-11-13 11:04:27 -05:00

Move arch-specific files to subdirs

This commit is contained in:
Alex Kotov 2021-12-19 08:01:38 +05:00
parent 0804cb451a
commit ee6d0359b9
Signed by: kotovalexarian
GPG key ID: 553C0EBBEB5D5F08
3 changed files with 2 additions and 2 deletions

View file

@ -26,11 +26,11 @@ libkernaux_a_SOURCES = \
src/printf.c
if ARCH_I386
libkernaux_a_SOURCES += src/arch/i386.S
libkernaux_a_SOURCES += src/arch/i386/asm.S
endif
if ARCH_X86_64
libkernaux_a_SOURCES += src/arch/x86_64.S
libkernaux_a_SOURCES += src/arch/x86_64/asm.S
endif
if WITH_CMDLINE