NFC: proper include order in Makefile

This commit is contained in:
Aleksandr Kutuzov 2020-10-20 15:25:01 +03:00
parent 88ab3c3aee
commit 4c60218997
2 changed files with 1 additions and 2 deletions

View file

@ -18,7 +18,6 @@ endif
APP_NFC ?= 0
ifeq ($(APP_NFC), 1)
export APP_NFC
APP_MENU = 1
CFLAGS += -DAPP_NFC
C_SOURCES += $(wildcard $(APP_DIR)/nfc/*.c)

View file

@ -3,8 +3,8 @@ PROJECT = firmware
include $(PROJECT_ROOT)/make/base.mk
include $(PROJECT_ROOT)/core/core.mk
include $(PROJECT_ROOT)/lib/lib.mk
include $(PROJECT_ROOT)/applications/applications.mk
include $(PROJECT_ROOT)/lib/lib.mk
TARGET ?= f2
TARGET_DIR = targets/$(TARGET)