aboutsummaryrefslogtreecommitdiffstats
path: root/os/nil/nil.mk
blob: 0d6350f56e418e804d889f94f3e62a7af2c0d930 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# List of all the ChibiOS/NIL kernel files, there is no need to remove the files
# from this list, you can disable parts of the kernel by editing chconf.h.
ifeq ($(USE_SMART_BUILD),yes)
CHCONF := $(strip $(shell cat chconf.h | egrep -e "\#define"))
KERNSRC := ${CHIBIOS}/os/nil/src/ch.c
else
KERNSRC := ${CHIBIOS}/os/nil/src/ch.c
endif

# Required include directories
KERNINC := ${CHIBIOS}/os/nil/include

# Shared variables
ALLCSRC += $(KERNSRC)
ALLINC  += $(KERNINC)

# OS Library
include $(CHIBIOS)/os/lib/lib.mk