aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: e8d3a15eb10c4c7c57c1a5c7bd2ee40c3fefce32 (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 $@