aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 5d671c23279755bb77f99ab532e05e8eec0cf684 (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-immersive.user.js

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

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

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