summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: e38d127c989d351e0df68b785b244d85090eb101 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# l/<token>/index.html is one personal list page per person, written by `sf pages`
UNCOMPRESSED_FILES := $(wildcard *.html *.css *.js students/*.html v1/*.html v2/*.html data-deletion/*.html l/*/*.html)
GZ_FILES := $(UNCOMPRESSED_FILES:=.gz)

all: $(GZ_FILES)

%.gz: %
	gzip -k -f $<

clean:
	rm -f $(GZ_FILES)

.PHONY: all clean