Fresco/Berlin/src Makefile.in,1.42,1.43
Tobias Hunger <[email protected]>
| Newsgroups | gmane.comp.video.fresco.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvs/fresco/Fresco/Berlin/src In directory purcel:/tmp/cvs-serv4336/Berlin/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/Berlin/src/Makefile.in,v retrieving revision 1.42 retrieving revision 1.43 diff -u -d -r1.42 -r1.43 --- Makefile.in 26 Feb 2003 10:16:40 -0000 1.42 +++ Makefile.in 25 Mar 2003 20:36:00 -0000 1.43 @@ -92,18 +92,18 @@ Berlin.xref: $(XREF) @echo linking xref files together - @mkdir -p $(docdir)/sxr - @compile-xref -o $@ $^ + mkdir -p $(docdir)/sxr + compile-xref -o $@ $^ Berlin.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) - @touch $@ + $(SYNOPSIS) -c ../config/synopsis.py -Wc,formatter=HTML -o $@ $(HSYN) + touch $@ install: all $(SHTOOL) mkdir -f -p -m 755 $(DESTDIR)$(libdir) @@ -140,15 +140,15 @@ %.o: %.cc @echo compiling $(@F) - @$(CXX) $(CPPFLAGS) $(CXXFLAGS) $(OPTFLAGS) $(SOFLAGS) -c $< -o $@ + $(CXX) $(CPPFLAGS) $(CXXFLAGS) $(OPTFLAGS) $(SOFLAGS) -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