12 lines
520 B
Makefile
12 lines
520 B
Makefile
|
CSRC += $(wildcard $(CURRENTPATH)/src/drivers/can/*.c)
|
||
|
CSRC += $(wildcard $(CURRENTPATH)/src/*.c)
|
||
|
CSRC += $(wildcard $(CURRENTPATH)/src/interfaces/*.c)
|
||
|
CSRC += $(wildcard $(CURRENTPATH)/src/rtable/csp_rtable_cidr.c)
|
||
|
CSRC += $(wildcard $(CURRENTPATH)/src/crypto/*.c)
|
||
|
CSRC += $(wildcard $(CURRENTPATH)/src/arch/posix/*.c)
|
||
|
CSRC += $(wildcard $(CURRENTPATH)/src/transport/*.c)
|
||
|
|
||
|
INCLUDES += $(CURRENTPATH)/include
|
||
|
INCLUDES += $(CURRENTPATH)/include/csp
|
||
|
INCLUDES += $(CURRENTPATH)/include/csp/crypto
|
||
|
INCLUDES += $(CURRENTPATH)
|