Mass file extension update.

- Use .cc and .h everywhere.
- Update includes/include guards.
- Remove extra makefile targets necessitated by previous mix
  of cpp/cc.

Change-Id: I7aad29152d4177937f8f42927c16c6572228c104
This commit is contained in:
Tom Finegan
2016-03-21 11:20:48 -07:00
parent 79cb9805c1
commit 504e0f2d5b
25 changed files with 80 additions and 87 deletions

View File

@@ -40,16 +40,10 @@ libwebm.a: $(OBJSA)
libwebm.so: $(OBJSSO)
$(CXX) $(CXXFLAGS) -shared $(OBJSSO) -o $(LIBWEBMSO)
%.o: %.cpp
$(CXX) -c $(CXXFLAGS) $< -o $@
%_a.o: %.cpp
%.o: %.cc
$(CXX) -c $(CXXFLAGS) $< -o $@
%_a.o: %.cc
$(CXX) -c $(CXXFLAGS) $< -o $@
%_so.o: %.cpp
$(CXX) -c $(CXXFLAGS) -fPIC $< -o $@
%_so.o: %.cc
$(CXX) -c $(CXXFLAGS) -fPIC $< -o $@