Default to cc as a compiler, with options to change if needed

This commit is contained in:
Michael Martin 2016-02-08 18:10:23 -08:00
parent e0ee18b299
commit 0bd54d0432
2 changed files with 6 additions and 2 deletions

View File

@ -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)

View File

@ -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)