Skip to content

Instantly share code, notes, and snippets.

@mig-hub
Last active September 23, 2020 09:16
Show Gist options
  • Save mig-hub/2575b46e6f330f11aa274932dd3359dc to your computer and use it in GitHub Desktop.
Save mig-hub/2575b46e6f330f11aa274932dd3359dc to your computer and use it in GitHub Desktop.
$(DST_DIR)/robots.txt:
@echo "User-agent: *" > $@
@echo "Allow: *" >> $@
@echo "Sitemap: $(BASE_URL)/sitemap.xml" >> $@
$(DST_DIR)/sitemap.xml: $(HTML_FILES)
@echo '<?xml version="1.0" encoding="UTF-8"?><urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">' > $@
for f in $^; do \
@echo "<url><loc>$(BASE_URL)$${f#$(DST_DIR)}<loc></url>" >> $@
done
@echo '</urlset>' >> $@
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment