diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 28 |
1 files changed, 0 insertions, 28 deletions
@@ -14,31 +14,11 @@ # along with this program. If not, see <https://www.gnu.org/licenses/>. -BROWSERIFY := ./node_modules/.bin/browserify - IMPORTS := peniquitous.js lib/mousetrap/tests/libs/key-event.js IMPORTS_BASENAME := $(notdir $(IMPORTS)) all: peniquitous.user.js -# peniquitous.user.js: peniquitous.js lib/mousetrap/tests/libs/key-event.js userscript-header.txt -# sed -e '1d' -e '$$d' \ -# lib/mousetrap/tests/libs/key-event.js \ -# > key-event.js -# -# cat \ -# userscript-header.txt \ -# key-event.js \ -# peniquitous.js \ -# > $@ -# -# rm key-event.js - -# build/?: $(IMPORTS) -# sed -e '/^(function/d' -e '$$d' file -# -# build/main.js: build/*.js - build: mkdir -p $@ @@ -57,14 +37,6 @@ build/main.js: main.js.in $(addprefix build/,$(IMPORTS_BASENAME)) $< \ > $@ -peniquitous.user.js: main.js peniquitous.js userscript-header.txt - $(BROWSERIFY) \ - --outfile $@ \ - $< - - cat userscript-header.txt $@ > "$@.tmp" - mv "$@.tmp" $@ - .PHONY: clean clean: rm -rf build |