Add .cc extension to Makefile.target

This commit is contained in:
Thomas Goyne 2012-11-07 07:36:31 -08:00
parent 88fdee726b
commit 4853119153
1 changed files with 3 additions and 0 deletions

View File

@ -180,6 +180,9 @@ endif
%.o: %.cxx
$(CXX_ENV) $(BIN_CXX) $(CFLAGS_DEP) $(CPPFLAGS) $(CXXFLAGS) -c -o $@ $<
%.o: %.cc
$(CXX_ENV) $(BIN_CXX) $(CFLAGS_DEP) $(CPPFLAGS) $(CXXFLAGS) -c -o $@ $<
%.o: %.mm
$(CXX_ENV) $(BIN_CXX) $(CFLAGS_DEP) $(CPPFLAGS) $(OBJCXXFLAGS) -c -o $@ $<