From 0bd54d04327ac4319ec7b359a2233a9feeb91eda Mon Sep 17 00:00:00 2001 From: Michael Martin Date: Mon, 8 Feb 2016 18:10:23 -0800 Subject: [PATCH] Default to cc as a compiler, with options to change if needed --- Makefile | 4 +++- slinky/Makefile | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 6a35473..2fe21d6 100644 --- a/Makefile +++ b/Makefile @@ -27,7 +27,9 @@ LDFLAGS=-m32 YACC=bison -y #YACC=yacc -CC=gcc +# Pick a compiler if you have one in particular you want. +CC=cc +#CC=gcc #CC=clang macross: $(MACROSS_OBJECTS) diff --git a/slinky/Makefile b/slinky/Makefile index e3ec3b9..692757c 100644 --- a/slinky/Makefile +++ b/slinky/Makefile @@ -16,7 +16,9 @@ LDFLAGS=-m32 YACC=bison -y #YACC=yacc -CC=gcc +# Pick a compiler if you have one in particular you want. +CC=cc +#CC=gcc #CC=clang slinky: $(SLINKY_OBJECTS)