Description: Do not hard-code CC in Makefile Author: Nilesh Patra Last-Update: 2025-09-23 --- a/config.c +++ b/config.c @@ -252,7 +252,7 @@ fprintf(makefile, "# Shareware copyright 1993, by Sam Lantinga\n\n"); #ifdef linux - fprintf(makefile, "\nCC = gcc\n"); + fprintf(makefile, "\nCC ?= gcc\n"); #endif fclose(makefile); system("sh scanpty >>Makefile");