summaryrefslogtreecommitdiff
path: root/Makefile
blob: 354c3265c3c387255e15b8120bda251e84bb0681 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
SOURCES = index.html index.js index.css

.PHONY: all clean

all: out $(patsubst %,out/%,$(SOURCES))

clean:
	rm -rf out


out:
	mkdir out

out/%: % apply_params.sh
	./apply_params.sh <$< >$@