17 lines
505 B
Makefile
17 lines
505 B
Makefile
ccflags-y += -I$(srctree)/kernel/nanokernel/include
|
|
ccflags-y += -I$(srctree)/kernel/microkernel/include
|
|
|
|
obj-y = gdt.o thread.o fatal.o cpuhalt.o \
|
|
excstub.o swap.o intboiexit.o msr.o \
|
|
excconnect.o inthndlset.o sys_fatal_error_handler.o \
|
|
crt0.o driver_static_irq_stubs.o
|
|
|
|
obj-y += atomic_nolock.o atomic.o
|
|
obj-y += cache_s.o cache.o
|
|
obj-y += intconnect.o intstub.o
|
|
|
|
obj-$(CONFIG_FP_SHARING) += float.o
|
|
obj-$(CONFIG_UNALIGNED_WRITE_UNSUPPORTED) += unaligned.o
|
|
obj-$(CONFIG_MICROKERNEL) += strtask.o
|
|
|