From 6a6ecb3cce5dd0c11c4f92e5b3810798516f4a2a Mon Sep 17 00:00:00 2001 From: Vinay Chandra Date: Sun, 8 Nov 2020 19:14:06 +0000 Subject: [PATCH] Update Makefile to use CC instead of gcc --- mkbootimg/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mkbootimg/Makefile b/mkbootimg/Makefile index 3ab5ba7..54e8256 100644 --- a/mkbootimg/Makefile +++ b/mkbootimg/Makefile @@ -21,7 +21,7 @@ INCBIN = ../dist/boot.bin ../dist/bootboot.bin ../dist/bootboot.efi ../dist/boot all: data.c $(TARGET) data.c: $(INCBIN) - @gcc bin2h.c -o bin2h + $(CC) bin2h.c -o bin2h ./bin2h $(INCBIN) >data.c @rm bin2h