diff options
author | EuAndreh <eu@euandre.org> | 2025-03-30 17:41:03 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2025-03-30 17:41:03 -0300 |
commit | efec6950e1f7960f0a2325ef3d44f3df0d5ddb17 (patch) | |
tree | 3875d09806732a933f171a6b8322265faa66c405 /Makefile | |
parent | src/content/blog/: Upgrade 4 files to asciidoc (diff) | |
download | euandre.org-efec6950e1f7960f0a2325ef3d44f3df0d5ddb17.tar.gz euandre.org-efec6950e1f7960f0a2325ef3d44f3df0d5ddb17.tar.xz |
Makefile, mkdeps.sh: Silent commands that are already too big, and will get bigger
Diffstat (limited to '')
-rw-r--r-- | Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -206,11 +206,13 @@ src/content/.well-known/security.txt: email.txt baseurl.txt expiry.txt printf 'Preferred-Languages: en, pt, fr, eo, es\n' >> $@ install.html.txt: $(all-contents) $(sources.snippets) $(sources.snippets.gz) - find $(all-contents) `cat $(sources.snippets) $(sources.snippets.gz)` \ + @echo '# find ... > $@. Use -n of make(1) for full listing.' + @find $(all-contents) `cat $(sources.snippets) $(sources.snippets.gz)` \ | sed 's|^src/content/||' > $@ install.src.txt: $(sources) - find $(sources) | sed 's|^src/content/||' > $@ + @echo '# find ... > $@. Use -n of make(1) for full listing.' + @find $(sources) | sed 's|^src/content/||' > $@ |