From: David Griffith Date: Fri, 5 May 2023 04:49:40 +0000 (-0700) Subject: Make it easier to explicitly select desired C compiler. X-Git-Url: https://scope-eye.net/git/?a=commitdiff_plain;h=5122e7ff4b117d284c768f291663760034c1455a;p=liskon_frotz.git Make it easier to explicitly select desired C compiler. --- 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