79d02229cc
- all subtarget specific defines are in their own files - common defines left in main Makefile - each subtarget makefile idefed with SUBTARGET - all subtargets compile tested - few seems to be broken/unneeded things marked with FIXME Signed-off-by: Roman Yeryomin <roman@advem.lv> SVN-Revision: 49104
17 lines
562 B
Makefile
17 lines
562 B
Makefile
#
|
|
# MT7628 Profiles
|
|
#
|
|
|
|
Image/Build/Profile/MIWIFI-NANO=$(call BuildFirmware/Default16M/$(1),$(1),miwifi-nano,MIWIFI-NANO)
|
|
Image/Build/Profile/MT7628=$(call BuildFirmware/Default4M/$(1),$(1),mt7628,MT7628)
|
|
Image/Build/Profile/WRTNODE2P=$(call BuildFirmware/Default16M/$(1),$(1),wrtnode2p,WRTNODE2P)
|
|
|
|
define Image/Build/Profile/Default
|
|
$(call Image/Build/Profile/MIWIFI-NANO,$(1))
|
|
$(call Image/Build/Profile/MT7628,$(1))
|
|
$(call Image/Build/Profile/WRTNODE2P,$(1))
|
|
endef
|
|
|
|
define Image/Build/Profile/MiwifiNano
|
|
$(call Image/Build/Profile/MIWIFI-NANO,$(1))
|
|
endef
|