mirror of
https://github.com/reactos/reactos.git
synced 2024-12-26 00:54:40 +00:00
change CPP to CXX
svn path=/trunk/; revision=5528
This commit is contained in:
parent
4ad39f0a27
commit
bad8c294c5
1 changed files with 3 additions and 3 deletions
|
@ -75,7 +75,7 @@ else
|
|||
LEAN_AND_MEAN_DEFINE =
|
||||
endif
|
||||
|
||||
CPP = $(PREFIX)g++
|
||||
CXX = $(PREFIX)g++
|
||||
CC = $(PREFIX)gcc
|
||||
NATIVE_CC = gcc
|
||||
CFLAGS = \
|
||||
|
@ -102,9 +102,9 @@ TOOLS_PATH = $(PATH_TO_TOP)/../reactos/tools
|
|||
RSYM = $(TOOLS_PATH)/rsym
|
||||
|
||||
%.o: %.cpp
|
||||
$(CPP) $(CFLAGS) -c $< -o $@
|
||||
$(CXX) $(CFLAGS) -c $< -o $@
|
||||
%.o: %.cc
|
||||
$(CPP) $(CFLAGS) -c $< -o $@
|
||||
$(CXX) $(CFLAGS) -c $< -o $@
|
||||
%.o: %.c
|
||||
$(CC) $(CFLAGS) -c $< -o $@
|
||||
%.o: %.asm
|
||||
|
|
Loading…
Reference in a new issue