11 lines
328 B
Makefile
11 lines
328 B
Makefile
# add main and others
|
|
CXXSRC += $(wildcard $(CURRENTPATH)/*.cpp)
|
|
CSRC += $(wildcard $(CURRENTPATH)/*.c)
|
|
|
|
CSRC += $(wildcard $(CURRENTPATH)/boardconfig/*.c)
|
|
|
|
CXXSRC += $(wildcard $(CURRENTPATH)/comIF/*.cpp)
|
|
CSRC += $(wildcard $(CURRENTPATH)/comIF/*.c)
|
|
|
|
INCLUDES += $(CURRENTPATH)/boardconfig
|
|
INCLUDES += $(CURRENTPATH)/fsfwconfig
|