Commit bfea211b authored by Daniel Friesel's avatar Daniel Friesel
Browse files

add nfpvalues and nfpkeys make targets

parent d29c6157
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -321,4 +321,7 @@ info: arch_info
	@echo "CXXFLAGS: ${CXXFLAGS}"
	@echo "Selected (common/arch) drivers: ${drivers} / ${arch_drivers}"

.PHONY: clean config default randconfig stack stackm help info
nfpkeys:
	@echo '{"OS Image": {"ROM": {"unit": "B", "description": "ROM size", "minimize": true}, "RAM": {"unit": "B", "description": "RAM size", "minimize": true}}}'

.PHONY: clean config default randconfig stack stackm help info nfpkeys
+3 −0
Original line number Diff line number Diff line
@@ -187,4 +187,7 @@ arch_info:
attributes: build/system.elf
	${QUIET}script/size.py avr-size text,data data,bss

nfpvalues: build/system.elf
	${QUIET}script/nfpvalues.py avr-size text,data data,bss

.PHONY: arch_clean arch_help arch_info attributes cat monitor program size
+3 −0
Original line number Diff line number Diff line
@@ -182,4 +182,7 @@ arch_info:
attributes: build/system.elf
	${QUIET}script/size.py avr-size text,data data,bss

nfpvalues: build/system.elf
	${QUIET}script/nfpvalues.py avr-size text,data data,bss

.PHONY: arch_clean arch_help arch_info attributes cat monitor program size
+3 −0
Original line number Diff line number Diff line
@@ -91,4 +91,7 @@ arch_info:
attributes: build/system.elf
	${QUIET}script/size.py avr-size text,data data,bss

nfpvalues: build/system.elf
	${QUIET}script/nfpvalues.py avr-size text,data data,bss

.PHONY: arch_clean arch_help arch_info attributes monitor program
+3 −0
Original line number Diff line number Diff line
@@ -121,4 +121,7 @@ arch_info:
attributes: build/system.elf
	${QUIET}script/size.py ${SIZE} text,irom0.text data,bss

nfpvalues: build/system.elf
	${QUIET}script/nfpvalues.py ${SIZE} text,irom0.text data,bss

.PHONY: arch_clean arch_help arch_info attributes cat monitor program
Loading