bios: add build date to banner
authorSebastien Bourdeauducq <sebastien@milkymist.org>
Sun, 17 Feb 2013 13:29:11 +0000 (14:29 +0100)
committerSebastien Bourdeauducq <sebastien@milkymist.org>
Sun, 17 Feb 2013 13:29:11 +0000 (14:29 +0100)
software/bios/Makefile
software/bios/main.c

index 10cae9632214757c60c4ac28c32534afc6614123..77f60c97fb06e6c07de6e2072531cdac84ae7755 100644 (file)
@@ -24,6 +24,9 @@ bios-rescue.elf: linker-rescue.ld $(OBJECTS) libs
                -lbase -lcompiler-rt
        chmod -x $@
 
+main.o: main.c
+       $(compile-dep)
+
 %.o: %.c
        $(compile-dep)
 
@@ -38,6 +41,6 @@ flash: bios.bin
        m1nor bios.bin
 
 clean:
-       rm -f $(OBJECTS) $(OBJECTS:.o=.ts) $(OBJECTS:.o=.d) bios.elf bios.bin bios-rescue.elf bios-rescue.bin .*~ *~
+       rm -f $(OBJECTS) $(OBJECTS:.o=.d) bios.elf bios.bin bios-rescue.elf bios-rescue.bin .*~ *~
 
-.PHONY: clean libs flash
+.PHONY: main.o clean libs flash
index 606ba8c6b0d769346df0af1d9ff6837d2ea84f2a..20ffd0d08c0f1fd3776bcea7c4bc9519555b87e2 100644 (file)
@@ -423,7 +423,8 @@ static void print_mac(void)
 
 static const char banner[] =
        "\nMILKYMIST(tm) v"VERSION" BIOS   http://www.milkymist.org\n"
-       "(c) Copyright 2007-2012 Sebastien Bourdeauducq\n\n"
+       "(c) Copyright 2007-2013 Sebastien Bourdeauducq\n"
+       "Built "__DATE__" "__TIME__"\n\n"
        "This program is free software: you can redistribute it and/or modify\n"
        "it under the terms of the GNU General Public License as published by\n"
        "the Free Software Foundation, version 3 of the License.\n";