mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-10 15:04:19 +00:00
NFC: proper include order in Makefile
This commit is contained in:
parent
88ab3c3aee
commit
4c60218997
2 changed files with 1 additions and 2 deletions
|
@ -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)
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue