diff options
author | Michal Krol <[email protected]> | 2005-01-18 14:16:51 +0000 |
---|---|---|
committer | Michal Krol <[email protected]> | 2005-01-18 14:16:51 +0000 |
commit | a885c7a6e086fb4c96aac2fd64fa2a01114cf5df (patch) | |
tree | ad82f7815f44135f3a97d9dc67d1156aec1bdde5 /src/mesa/Makefile | |
parent | 619f006bba9035204b84bb842c9630c2292fd950 (diff) |
change .cc suffix to .cpp
Diffstat (limited to 'src/mesa/Makefile')
-rw-r--r-- | src/mesa/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/Makefile b/src/mesa/Makefile index f898795ab54..b7cfc73f9a7 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: |