From 1a9c14acded511bdc05576b4e78689579f4f8f9c Mon Sep 17 00:00:00 2001 From: Calvin Rose Date: Sun, 6 Sep 2020 11:04:07 -0500 Subject: [PATCH] Add checksum to build/janet.c to check for inconsistent builds. --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 189af399..cbce4d01 100644 --- a/Makefile +++ b/Makefile @@ -150,6 +150,7 @@ build/janet_boot: $(JANET_BOOT_OBJECTS) # Now the reason we bootstrap in the first place build/janet.c: build/janet_boot src/boot/boot.janet build/janet_boot . JANET_PATH '$(JANET_PATH)' JANET_HEADERPATH '$(INCLUDEDIR)/janet' > $@ + cksum $@ ######################## ##### Amalgamation #####