aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 27872b234e9b6094e0e2c0b41f9be9eb75dd3095 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
PROJECT = youtube-noscript-shim
ZIP = zip
OUTFILES = manifest.json $(wildcard *.js)
RELEASE = $(PROJECT).zip

.PHONY: dist clean
dist: $(RELEASE)

clean:
	rm -vf $(RELEASE)

$(RELEASE): $(OUTFILES)
	$(ZIP) -r -FS $@ $^