|
@@ -511,6 +511,13 @@ EMBED_ALL := $(foreach i,$(call seq,1,$(words $(EMBEDDED_FILES))),\
|
511
|
511
|
\"$(notdir $(word $(i),$(EMBEDDED_FILES)))\" ))
|
512
|
512
|
|
513
|
513
|
$(BIN)/embedded.o : $(EMBEDDED_FILES) $(EMBEDDED_LIST)
|
|
514
|
+
|
|
515
|
+# This file uses .incbin inline assembly to include a binary file.
|
|
516
|
+# Unfortunately ccache does not detect this dependency and caches builds even
|
|
517
|
+# when the binary file has changed.
|
|
518
|
+#
|
|
519
|
+$(BIN)/embedded.o : override CC := env CCACHE_DISABLE=1 $(CC)
|
|
520
|
+
|
514
|
521
|
CFLAGS_embedded = -DEMBED_ALL="$(EMBED_ALL)"
|
515
|
522
|
|
516
|
523
|
# Generate the NIC file from the parsed source files. The NIC file is
|