diff options
author | aqua <aqua@iserlohn-fortress.net> | 2023-07-30 17:11:43 +0300 |
---|---|---|
committer | aqua <aqua@iserlohn-fortress.net> | 2023-07-30 17:11:43 +0300 |
commit | 3c440f91ea7f26f7c5ed10c18bd28348020d8ebe (patch) | |
tree | 1b88afc9e7ae16dd7a827c93e6467096c6760047 /i686/mk | |
parent | Fix compiler warnings (diff) | |
download | kernel-3c440f91ea7f26f7c5ed10c18bd28348020d8ebe.tar.xz |
Added make wrapper
Diffstat (limited to 'i686/mk')
-rwxr-xr-x | i686/mk | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -0,0 +1,16 @@ +#!../mach + +INCLUDES := -isystem../grub +${ARCH}_CFLAGS += ${INCLUDES} +${ARCH}_CXXFLAGS += ${INCLUDES} + +TARGETLIB += arch +arch.SRCS = boot.s init.s \ + gdt.c lgdt.c \ + lidt.c isr.c + +HOSTTARGETBIN += test_gdt +test_gdt.SRCS = test_gdt.cc + +TESTS += test_gdt + |