summaryrefslogtreecommitdiff
path: root/src/mesa/Makefile
diff options
context:
space:
mode:
authorMichal Krol <mjkrol@gmail.org>2005-01-18 14:16:51 +0000
committerMichal Krol <mjkrol@gmail.org>2005-01-18 14:16:51 +0000
commita885c7a6e086fb4c96aac2fd64fa2a01114cf5df (patch)
treead82f7815f44135f3a97d9dc67d1156aec1bdde5 /src/mesa/Makefile
parent619f006bba9035204b84bb842c9630c2292fd950 (diff)
change .cc suffix to .cpp
Diffstat (limited to 'src/mesa/Makefile')
-rw-r--r--src/mesa/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/Makefile b/src/mesa/Makefile
index f898795ab5..b7cfc73f9a 100644
--- a/src/mesa/Makefile
+++ b/src/mesa/Makefile
@@ -11,12 +11,12 @@ GL_MINOR = 5
GL_TINY = 0$(MESA_MAJOR)0$(MESA_MINOR)0$(MESA_TINY)
-.SUFFIXES : .cc
+.SUFFIXES : .cpp
.c.o:
$(CC) -c $(INCLUDE_DIRS) $(CFLAGS) $< -o $@
-.cc.o:
+.cpp.o:
$(CXX) -c $(INCLUDE_DIRS) $(CXXFLAGS) $< -o $@
.S.o: