Fresco/Fresco-Perl-demos/src Makefile,1.9,1.10
Tobias Hunger <[email protected]>
| Newsgroups | gmane.comp.video.fresco.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvs/fresco/Fresco/Fresco-Perl-demos/src In directory purcel:/tmp/cvs-serv4336/Fresco-Perl-demos/src Modified Files: Makefile Log Message: Only suppress output of echos in the Makefiles. This is what the GNU make manual recommends. Index: Makefile =================================================================== RCS file: /cvs/fresco/Fresco/Fresco-Perl-demos/src/Makefile,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- Makefile 23 Sep 2000 19:14:54 -0000 1.9 +++ Makefile 25 Mar 2003 20:36:01 -0000 1.10 @@ -96,16 +96,16 @@ # These need a special rule, because they generally have no .hh file $(MISCDEP): $(dpath)/%.d: %.cc @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 : /g" > $@' $(dpath)/%.d: %.cc %.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 : /g" > $@' $(opath)/%.o: %.cc - -@if [ ! -d $(opath) ]; then mkdir $(opath); fi + -if [ ! -d $(opath) ]; then mkdir $(opath); fi $(CXX) $(CPPFLAGS) $(CXXFLAGS) -c $< -o $@ ifneq ($(MAKECMDGOALS),clean)