From 4c602189973206252ec6455c52450406c6d67d09 Mon Sep 17 00:00:00 2001 From: Aleksandr Kutuzov Date: Tue, 20 Oct 2020 15:25:01 +0300 Subject: [PATCH] NFC: proper include order in Makefile --- applications/applications.mk | 1 - firmware/Makefile | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/applications/applications.mk b/applications/applications.mk index 007f8644..b57cff23 100644 --- a/applications/applications.mk +++ b/applications/applications.mk @@ -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) diff --git a/firmware/Makefile b/firmware/Makefile index 4c6a10f4..587fa7df 100644 --- a/firmware/Makefile +++ b/firmware/Makefile @@ -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)