Fresco/Prague/src Makefile.in,1.30,1.31
Tobias Hunger <[email protected]>
| Newsgroups | gmane.comp.video.fresco.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvs/fresco/Fresco/Prague/src In directory purcel:/tmp/cvs-serv4336/Prague/src Modified Files: Makefile.in Log Message: Only suppress output of echos in the Makefiles. This is what the GNU make manual recommends. Index: Makefile.in =================================================================== RCS file: /cvs/fresco/Fresco/Prague/src/Makefile.in,v retrieving revision 1.30 retrieving revision 1.31 diff -u -d -r1.30 -r1.31 --- Makefile.in 4 Jan 2003 20:42:10 -0000 1.30 +++ Makefile.in 25 Mar 2003 20:36:02 -0000 1.31 @@ -92,17 +92,17 @@ $(docdir)/sxr/Prague.xref: $(XREF) @echo linking xref files together - @mkdir -p $(docdir)/sxr - @compile-xref -o $@ $^ + mkdir -p $(docdir)/sxr + compile-xref -o $@ $^ $(docdir)/sxr/Prague.syn: $(SSYN) $(HSYN) @echo linking synopsis files together - @mkdir -p $(docdir)/sxr - @$(SYNOPSIS) -o $@ $^ + mkdir -p $(docdir)/sxr + $(SYNOPSIS) -o $@ $^ $(MANUAL): $(HSYN) @echo formatting $(@F) - @$(SYNOPSIS) -c ../config/synopsis.py -Wc,formatter=HTML -o $@ $(HSYN) + $(SYNOPSIS) -c ../config/synopsis.py -Wc,formatter=HTML -o $@ $(HSYN) touch $@ install: all @@ -158,19 +158,19 @@ %.o: %.cc @echo compiling $(@F) - @$(CXX) $(CPPFLAGS) $(CXXFLAGS) $(OPTFLAGS) $(SOFLAGS) -c $< -o $@ + $(CXX) $(CPPFLAGS) $(CXXFLAGS) $(OPTFLAGS) $(SOFLAGS) -c $< -o $@ DataTypeManager.o: DataTypeManager.cc @echo compiling $(@F) - @$(CXX) $(CPPFLAGS) $(CXXFLAGS) $(OPTFLAGS) $(SOFLAGS) -ftemplate-depth-23 -c $< -o $@ + $(CXX) $(CPPFLAGS) $(CXXFLAGS) $(OPTFLAGS) $(SOFLAGS) -ftemplate-depth-23 -c $< -o $@ %.hh.syn %.hh.xref: %.hh @echo parsing $(^F) - @$(SYNOPSIS) -c ../config/synopsis.py -Wc,parser=Fresco,linker=Fresco -Wp,-x,$(<F).xref -o $*.hh.syn $? + $(SYNOPSIS) -c ../config/synopsis.py -Wc,parser=Fresco,linker=Fresco -Wp,-x,$(<F).xref -o $*.hh.syn $? %.cc.syn %.cc.xref: %.cc @echo parsing $(^F) - @$(SYNOPSIS) -c ../config/synopsis.py -Wc,parser=Fresco,linker=Fresco -Wp,-x,$(<F).xref -o $*.cc.syn $? + $(SYNOPSIS) -c ../config/synopsis.py -Wc,parser=Fresco,linker=Fresco -Wp,-x,$(<F).xref -o $*.cc.syn $? ifneq (,$(findstring depend, $(MAKECMDGOALS))) $(DEP): %.d: .FORCE