Fresco/Babylon/src Makefile.in,1.25,1.26
Tobias Hunger <[email protected]>
| Newsgroups | gmane.comp.video.fresco.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvs/fresco/Fresco/Babylon/src In directory purcel:/tmp/cvs-serv4336/Babylon/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/Babylon/src/Makefile.in,v retrieving revision 1.25 retrieving revision 1.26 diff -u -d -r1.25 -r1.26 --- Makefile.in 10 Dec 2002 05:46:10 -0000 1.25 +++ Makefile.in 25 Mar 2003 20:35:58 -0000 1.26 @@ -69,17 +69,17 @@ $(docdir)/sxr/Babylon.xref: $(XREF) @echo linking xref files together - @mkdir -p $(docdir)/sxr - @compile-xref -o $@ $^ + mkdir -p $(docdir)/sxr + compile-xref -o $@ $^ $(docdir)/sxr/Babylon.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 @@ -118,15 +118,15 @@ %.o: %.cc @echo compiling $(@F) - @$(CXX) $(CPPFLAGS) $(CXXFLAGS) -c $< -o $@ + $(CXX) $(CPPFLAGS) $(CXXFLAGS) -c $< -o $@ %.hh.syn %.hh.xref: %.hh @echo parsing $(^F) - @$(SYNOPSIS) -c ../config/synopsis.py -Wc,parser=Fresco,linker=Fresco $(patsubst -I%, -I%, $(CPPFLAGS)) -Wp,-x,$(<F).xref -o $*.hh.syn $? + $(SYNOPSIS) -c ../config/synopsis.py -Wc,parser=Fresco,linker=Fresco $(patsubst -I%, -I%, $(CPPFLAGS)) -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 $(patsubst -I%, -I%, $(CPPFLAGS)) -Wp,-x,$(<F).xref -o $*.cc.syn $? + $(SYNOPSIS) -c ../config/synopsis.py -Wc,parser=Fresco,linker=Fresco $(patsubst -I%, -I%, $(CPPFLAGS)) -Wp,-x,$(<F).xref -o $*.cc.syn $? ifneq (,$(findstring depend, $(MAKECMDGOALS))) $(DEP): %.d: .FORCE