makefile: Show a warning when binary exceeds limits

This commit is contained in:
CTCaer 2020-03-24 20:06:10 +02:00
parent a39ba2cd71
commit dd4dd91152

View file

@ -78,8 +78,10 @@ NYXDIR := $(wildcard nyx)
all: $(TARGET).bin
@echo -n "Payload size is "
@wc -c < $(OUTPUTDIR)/$(TARGET).bin
$(eval BIN_SIZE = $(shell wc -c < $(OUTPUTDIR)/$(TARGET).bin))
@echo $(BIN_SIZE)
@echo "Max size is 126296 Bytes."
@if [ ${BIN_SIZE} -gt 126296 ]; then echo "\e[1;33mPayload size exceeds limit!\e[0m"; fi
clean:
@rm -rf $(OBJS)