aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: f4388249a52ac3d9c01081507dfdb3c10d223060 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
BROWSERIFY := ./node_modules/.bin/browserify
TSC := ./node_modules/.bin/tsc


all: build/netflix-no-skip.user.js

build/%.js: src/%.ts
	$(TSC)

build/netflix-no-skip.user.js: build/index.js src/userscript-header.txt
	$(BROWSERIFY) $^ -o $@

	cat src/userscript-header.txt $@ > $@.tmp
	mv $@.tmp $@