Force the CC variable in the Makefile to GCC.

SVN r16 (trunk)
This commit is contained in:
Randy Heit 2006-02-25 04:07:29 +00:00
parent 23b23f3950
commit 98aedc2a79

View file

@ -4,6 +4,8 @@ target = $(strip $(shell $(CC) -dumpmachine))
# DOS and Windows executables should have the .exe extension.
# Other operating systems should be extension-less.
CC = gcc
ifeq ($(findstring mingw32,$(target)),mingw32)
EXENAME = acc.exe
else