]> mj.ucw.cz Git - libucw.git/commitdiff
Introduced the verbose switch.
authorMartin Mares <mj@ucw.cz>
Tue, 17 Jul 2007 13:01:35 +0000 (15:01 +0200)
committerMartin Mares <mj@ucw.cz>
Tue, 17 Jul 2007 13:01:35 +0000 (15:01 +0200)
Makefiles are now silent by default and they only write single-line
messages on what's currently being done.

lib/perl/Filelock/Makefile
lib/perl/Ulimit/Makefile

index a114103baa33e1cafe883d5c49fdfd8005d4dfcf..e4e18c5f1a2c71622b114d95ae066f5530b097e7 100644 (file)
@@ -8,14 +8,16 @@ PROGS+=$(o)/lib/perl/Filelock/Filelock.pm
 extras:: $(o)/lib/perl/Filelock/arch/auto/Sherlock/Filelock/Filelock.$(SOEXT)
 
 $(o)/lib/perl/Filelock/arch/auto/Sherlock/Filelock/Filelock.$(SOEXT): $(o)/$(FILELOCK_DIR)/Filelock.xs $(o)/$(FILELOCK_DIR)/Filelock.pm $(o)/$(FILELOCK_DIR)/Makefile
-       cd $(o)/$(FILELOCK_DIR) && $(MAKE) -f Makefile
-       cp $@ run/$(DATADIR)/
+       $(M)MAKE $@
+       $(Q)cd $(o)/$(FILELOCK_DIR) && $(MAKE) -f Makefile $(MAKESILENT)
+       $(Q)cp $@ run/$(DATADIR)/
 
 $(o)/$(FILELOCK_DIR)/Makefile: $(o)/$(FILELOCK_DIR)/Makefile.PL
-       cd $(o)/$(FILELOCK_DIR) && perl Makefile.PL
+       $(M)PREPARE $@
+       $(Q)cd $(o)/$(FILELOCK_DIR) && perl Makefile.PL
 
 $(o)/$(FILELOCK_DIR)/Filelock.xs: $(s)/$(FILELOCK_DIR)/Filelock.xs
-       cp $^ $@
+       $(Q)cp $^ $@
 
 $(o)/$(FILELOCK_DIR)/Makefile.PL: $(s)/$(FILELOCK_DIR)/Makefile.PL
-       cp $^ $@
+       $(Q)cp $^ $@
index aaf5f35f7bcfd009f905bcc8d6904ca5d3a828ec..b4a54dbf91303dba1d708cb7bc2cc01f70507078 100644 (file)
@@ -8,14 +8,16 @@ PROGS+=$(o)/lib/perl/Ulimit/Ulimit.pm
 extras:: $(o)/lib/perl/Ulimit/arch/auto/Sherlock/Ulimit/Ulimit.$(SOEXT)
 
 $(o)/lib/perl/Ulimit/arch/auto/Sherlock/Ulimit/Ulimit.$(SOEXT): $(o)/$(ULIMIT_DIR)/Ulimit.xs $(o)/$(ULIMIT_DIR)/Ulimit.pm $(o)/$(ULIMIT_DIR)/Makefile
-       cd $(o)/$(ULIMIT_DIR) && $(MAKE) -f Makefile
-       cp $@ run/$(DATADIR)/
+       $(M)MAKE $@
+       $(Q)cd $(o)/$(ULIMIT_DIR) && $(MAKE) -f Makefile $(MAKESILENT)
+       $(Q)cp $@ run/$(DATADIR)/
 
 $(o)/$(ULIMIT_DIR)/Makefile: $(o)/$(ULIMIT_DIR)/Makefile.PL
-       cd $(o)/$(ULIMIT_DIR) && perl Makefile.PL
+       $(M)PREPARE $@
+       $(Q)cd $(o)/$(ULIMIT_DIR) && perl Makefile.PL
 
 $(o)/$(ULIMIT_DIR)/Ulimit.xs: $(s)/$(ULIMIT_DIR)/Ulimit.xs
-       cp $^ $@
+       $(Q)cp $^ $@
 
 $(o)/$(ULIMIT_DIR)/Makefile.PL: $(s)/$(ULIMIT_DIR)/Makefile.PL
-       cp $^ $@
+       $(Q)cp $^ $@