commit c183c8fff9ae133144b51aa1884664866aff22b0 parent e53b6500dc939482249b2db11cec361596d84a6c Author: Marcello Stanisci <marcello.stanisci@inria.fr> Date: Sat, 4 Mar 2017 15:23:28 +0100 Stopping (some) Makfile output, by prepending '@' to the commands. Diffstat:
| M | Makefile | | | 12 | ++++++------ |
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/Makefile b/Makefile @@ -7,11 +7,11 @@ SUBDIRS := php/doc python/doc all: $(SUBDIRS) $(SUBDIRS): graphics - cp -t $@ common/graphics/arch.png - $(MAKE) -C $@ + @cp -t $@ common/graphics/arch.png + @$(MAKE) -C $@ graphics: - cd common/graphics; dot -Tpdf arch.dot > arch.pdf - cd common/graphics; dot -Tpdf arch_nobo.dot > arch_nobo.pdf - cd common/graphics; dot -Tjpg arch.dot > arch.jpg - cd common/graphics; dot -Tjpg arch_nobo.dot > arch_nobo.jpg + @cd common/graphics; dot -Tpdf arch.dot > arch.pdf + @cd common/graphics; dot -Tpdf arch_nobo.dot > arch_nobo.pdf + @cd common/graphics; dot -Tjpg arch.dot > arch.jpg + @cd common/graphics; dot -Tjpg arch_nobo.dot > arch_nobo.jpg