From e5927e265f17a460755faf7613332580b05e89a9 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Fri, 17 Feb 2012 18:16:29 +0100 Subject: [PATCH] bios: add flash target using m1nor --- software/bios/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/software/bios/Makefile b/software/bios/Makefile index f916aaab0..ad4eec738 100644 --- a/software/bios/Makefile +++ b/software/bios/Makefile @@ -25,7 +25,10 @@ libs: make -C $(M2DIR)/software/libbase make -C $(M2DIR)/software/libextra -.PHONY: clean libs +flash: bios.bin + m1nor bios.bin clean: rm -f $(OBJECTS) $(OBJECTS:.o=.d) bios.elf bios.bin bios-rescue.elf bios-rescue.bin .*~ *~ + +.PHONY: clean libs flash