Fresco/Prague/src/Network Network.mk,1.9,1.10
Tobias Hunger <[email protected]>
| Newsgroups | gmane.comp.video.fresco.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvs/fresco/Fresco/Prague/src/Network In directory purcel:/tmp/cvs-serv4336/Prague/src/Network Modified Files: Network.mk Log Message: Only suppress output of echos in the Makefiles. This is what the GNU make manual recommends. Index: Network.mk =================================================================== RCS file: /cvs/fresco/Fresco/Prague/src/Network/Network.mk,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- Network.mk 25 Sep 2000 15:56:58 -0000 1.9 +++ Network.mk 25 Mar 2003 20:36:03 -0000 1.10 @@ -28,8 +28,8 @@ $(dpath)/%.d: Network/%.cc $(ipath)/Prague/Network/%.hh @echo making dependencies for $< - @if [ ! -d $(dpath) ]; then mkdir $(dpath); fi - @$(SHELL) -ec '$(CXX) $(DEPFLAGS) $(CPPFLAGS) $< \ + if [ ! -d $(dpath) ]; then mkdir $(dpath); fi + $(SHELL) -ec '$(CXX) $(DEPFLAGS) $(CPPFLAGS) $< \ | sed "s/$*\\.o[ :]*/$(dpath)\/$*\\.d $(opath)\/$*\\.o $(gpath)\/$*\\.o $(ppath)\/$*\\.o : /g" > $@' $(opath)/%.o: Network/%.cc $(CXX) $(CPPFLAGS) $(CXXFLAGS) $(OPTFLAGS) $(SOFLAGS) -c $< -o $@