From 5122e7ff4b117d284c768f291663760034c1455a Mon Sep 17 00:00:00 2001 From: David Griffith Date: Thu, 4 May 2023 21:49:40 -0700 Subject: [PATCH] Make it easier to explicitly select desired C compiler. --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index e1bd711..67e1320 100644 --- a/Makefile +++ b/Makefile @@ -1,9 +1,9 @@ # Makefile for Unix Frotz # GNU make is required. -# Your C compiler -#CC ?= gcc -#CC ?= clang +# Choose your preferred C compiler +#CC = gcc +#CC = clang # Enable compiler warnings. This is an absolute minimum. CFLAGS += -Wall -std=c99 -O3 #-Wextra -- 2.34.1