diff options
| author | Alexander Barton <alex@barton.de> | 2012-09-15 19:15:16 +0200 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2012-09-15 19:15:16 +0200 |
| commit | 5300f0082cf834b60d36859acc0be3c17b3848c9 (patch) | |
| tree | aa39ee7c6cb11aab725216cb0b47d9e244c71038 | |
| parent | 005ffeaa8c27d29efd3037d52a26a948b71cbc0c (diff) | |
| download | ngircd-5300f0082cf834b60d36859acc0be3c17b3848c9.tar.gz ngircd-5300f0082cf834b60d36859acc0be3c17b3848c9.zip | |
Make our own targets "silent", if enabled
| -rw-r--r-- | doc/Makefile.am | 2 | ||||
| -rw-r--r-- | man/Makefile.am | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am index 3bf68fb4..00f2530c 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -10,7 +10,7 @@ # .tmpl: - sed \ + $(AM_V_GEN)sed \ -e s@:ETCDIR:@${sysconfdir}@ \ <$< >$@ diff --git a/man/Makefile.am b/man/Makefile.am index ebe9fcef..5624e2a1 100644 --- a/man/Makefile.am +++ b/man/Makefile.am @@ -17,7 +17,7 @@ TEMPLATE_MANS = ngircd.conf.5.tmpl ngircd.8.tmpl SUFFIXES = .tmpl . .tmpl: - sed \ + $(AM_V_GEN)sed \ -e s@:SBINDIR:@${sbindir}@ \ -e s@:BINDIR:@${bindir}@ \ -e s@:ETCDIR:@${sysconfdir}@ \ |