aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 09b8b5ea8f9c91333bbaea5fa7e55dfdc66e0a6f (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: netflix-no-skip.user.js

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

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

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