Skip to content

Commit

Permalink
New misc-tags target to BuildScripts/custom_build_targets.mk
Browse files Browse the repository at this point in the history
  • Loading branch information
maxieds authored Jul 17, 2022
1 parent e07823e commit 5de0aae
Showing 1 changed file with 16 additions and 5 deletions.
21 changes: 16 additions & 5 deletions Firmware/Chameleon-Mini/BuildScripts/custom_build_targets.mk
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.PHONY: mifare mifare-classic desfire desfire-dev iso-modes ntag215 vicinity sl2s2002 tagatit em4233
.PHONY: mifare mifare-classic desfire desfire-dev iso-modes ntag215 vicinity sl2s2002 titagit em4233 misc-tags
.SECONDARY: custom-build

ECHO = echo $(ECHOFLAGS)
Expand Down Expand Up @@ -100,14 +100,25 @@ sl2s2002: TARGET_CUSTOM_BUILD_NAME:=SL2S2002Support
sl2s2002: CONFIG_SETTINGS:=$(SUPPORTED_TAGS_BUILD) -DDEFAULT_CONFIGURATION=CONFIG_NONE $(EXTRA_CONFIG_SETTINGS)
sl2s2002: custom-build

tagatit: SUPPORTED_TAGS_BUILD:=$(DEFAULT_TAG_SUPPORT_BASE) \
titagit: SUPPORTED_TAGS_BUILD:=$(DEFAULT_TAG_SUPPORT_BASE) \
-DCONFIG_TITAGITSTANDARD_SUPPORT \
-DCONFIG_TITAGITPLUS_SUPPORT
tagatit: TARGET_CUSTOM_BUILD_NAME:=TagatitSupport
tagatit: CONFIG_SETTINGS:=$(SUPPORTED_TAGS_BUILD) -DDEFAULT_CONFIGURATION=CONFIG_NONE $(EXTRA_CONFIG_SETTINGS)
tagatit: custom-build
titagit: TARGET_CUSTOM_BUILD_NAME:=TagatitSupport
titagit: CONFIG_SETTINGS:=$(SUPPORTED_TAGS_BUILD) -DDEFAULT_CONFIGURATION=CONFIG_NONE $(EXTRA_CONFIG_SETTINGS)
titagit: custom-build

em4233: SUPPORTED_TAGS_BUILD:=$(DEFAULT_TAG_SUPPORT_BASE) -DCONFIG_EM4233_SUPPORT
em4233: TARGET_CUSTOM_BUILD_NAME:=EM4233Support
em4233: CONFIG_SETTINGS:=$(SUPPORTED_TAGS_BUILD) -DDEFAULT_CONFIGURATION=CONFIG_NONE $(EXTRA_CONFIG_SETTINGS)
em4233: custom-build

misc-tags: SUPPORTED_TAGS_BUILD:= \
-DCONFIG_NTAG215_SUPPORT \
-DCONFIG_VICINITY_SUPPORT \
-DCONFIG_SL2S2002_SUPPORT \
-DCONFIG_TITAGITSTANDARD_SUPPORT \
-DCONFIG_TITAGITPLUS_SUPPORT \
-DCONFIG_EM4233_SUPPORT
misc-tags: TARGET_CUSTOM_BUILD_NAME:=MiscTagSupport
misc-tags: CONFIG_SETTINGS:=$(SUPPORTED_TAGS_BUILD) -DDEFAULT_CONFIGURATION=CONFIG_NONE $(EXTRA_CONFIG_SETTINGS)
misc-tags: custom-build

0 comments on commit 5de0aae

Please sign in to comment.