URL = https://acdw.casa/fwends REPO = https://tildegit.org/casa/pages/raw/branch/main/opml/mug.of.opml OUTD = /var/www/acdw.casa/fwends/ RC = sfeedrc FEEDS = feeds FILES = index.html style.css AGGREGATOR = ./fwendplanet.sh MAXAGE = 60 .PHONY: publish publish: build mkdir -p $(OUTD) cp $(FILES) $(OUTD) .PHONY: build build: $(RC) sfeed_update $(RC) || true $(AGGREGATOR) $(FEEDS) $(MAXAGE) >index.html $(RC): curl -L $(REPO) | sfeed_opml_import > $@ echo sfeedpath=$(FEEDS) >> $@