blob: 16ebca17f570018731a31bfb14be680a5775a414 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
--- makefile.orig 2010-03-01 20:26:50.000000000 +0100
+++ makefile 2010-03-24 00:48:38.000000000 +0100
@@ -266,8 +266,8 @@
# compiler, linker and utilities
AR = @ar
-CC = @gcc
-LD = @g++
+CC:= @$(CC)
+LD:= @$(CXX)
MD = -mkdir$(EXE)
RM = @rm -f
@@ -308,7 +308,7 @@
endif
# fullname is prefix+name+suffix+suffix64+suffixdebug
-FULLNAME = $(PREFIX)$(PREFIXSDL)$(NAME)$(SUFFIX)$(SUFFIX64)$(SUFFIXDEBUG)
+FULLNAME = $(NAME)
# add an EXE suffix to get the final emulator name
EMULATOR = $(FULLNAME)$(EXE)
|