150,6 → 150,10 |
endif |
endif |
|
ifeq ($(CONFIG_UDEBUG),y) |
DEFS += -DCONFIG_UDEBUG |
endif |
|
## Simple detection for the type of the host system |
# |
HOST = $(shell uname) |
280,12 → 284,19 |
generic/src/ipc/sysipc.c \ |
generic/src/ipc/ipcrsc.c \ |
generic/src/ipc/irq.c \ |
generic/src/udebug/udebug.c \ |
generic/src/udebug/udebug_ops.c \ |
generic/src/udebug/udebug_ipc.c \ |
generic/src/security/cap.c \ |
generic/src/sysinfo/sysinfo.c |
|
## Udebug interface sources |
# |
|
ifeq ($(CONFIG_UDEBUG),y) |
GENERIC_SOURCES += \ |
generic/src/udebug/udebug.c \ |
generic/src/udebug/udebug_ops.c \ |
generic/src/udebug/udebug_ipc.c |
endif |
|
## Test sources |
# |
|