We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f5817e6 commit 06958e4Copy full SHA for 06958e4
board/pedal/Makefile
@@ -32,12 +32,18 @@ recover: obj/bootstub.bin obj/$(PROJ_NAME).bin
32
33
include ../../common/version.mk
34
35
+obj/cert.h: ../../crypto/getcertheader.py
36
+ ../../crypto/getcertheader.py ../../certs/debug.pub ../../certs/release.pub > $@
37
+
38
obj/main.o: main.c ../*.h
39
mkdir -p obj
40
$(CC) $(CFLAGS) -o $@ -c $<
41
-obj/bootstub.o: ../bootstub.c ../*.h obj/gitversion.h
42
+obj/bootstub.o: ../bootstub.c ../*.h obj/gitversion.h obj/cert.h
43
44
+ mkdir -p ../obj
45
+ cp obj/gitversion.h ../obj/gitversion.h
46
+ cp obj/cert.h ../obj/cert.h
47
48
49
obj/$(STARTUP_FILE).o: ../$(STARTUP_FILE).s
0 commit comments