Libraries 사용에 따른 makefile 수정
예로 helloworld Project에서 Libraries/daemons/ota_server 부분을 참조한다고 가정할 경우,
해당 Project의 makefile, 즉 helloworld.mk File을 다음과 같이 수정해 주어야 겠다.
helloworld.mk (원래 makefile) | helloworld.mk (makefile 수정) |
NAME := App_Helloworld
$(NAME)_SOURCES := helloworld.c
GLOBAL_DEFINES := AOS_NO_WIFI
|
NAME := App_Helloworld
$(NAME)_SOURCES := helloworld.c
GLOBAL_DEFINES := AOS_NO_WIFI
$(NAME)_COMPONENTS += daemons/ota_server ← 수정/추가
|