Change compiler to cc for better cross-platform compat

This commit is contained in:
Stefan Arentz 2016-11-16 22:29:15 -05:00
parent 79d951fb29
commit 03ccb373eb

View File

@ -1,5 +1,5 @@
CC=clang
CC=cc
CFLAGS=-O3 -std=c11 -Werror -Wall -Wshadow -Wpointer-arith -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes
SOURCES=cpu.c ins.c pia.c mem.c ewm.c
OBJECTS=$(SOURCES:.c=.o)