From ade3c99305acb7798d727ad750bbc3b89118134f Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Fri, 8 May 2020 18:52:58 +0200 Subject: Makefile: Only build `index.js` with Browserify Previously this rule was passing all inputs to Browserify. We only need to pass `index.js`. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index e8d3a15..09b8b5e 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ build/%.js: src/%.ts $(TSC) netflix-no-skip.user.js: build/index.js build/*.js src/userscript-header.txt - $(BROWSERIFY) $^ -o $@ + $(BROWSERIFY) $< -o $@ cat src/userscript-header.txt $@ > $@.tmp mv $@.tmp $@ -- cgit v1.2.3