summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 71acf31..1c8d220 100644
--- a/Makefile
+++ b/Makefile
@@ -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/||' > $@