diff options
| author | Teddy Wing | 2021-03-21 17:17:31 +0100 | 
|---|---|---|
| committer | Teddy Wing | 2021-03-21 17:47:35 +0100 | 
| commit | 43f5b001ca73275c599a2feafa22a80aa0b433dd (patch) | |
| tree | 632b75eb9ecbd13dafb6de9bd64ddc95450fc4ab | |
| parent | f762f84f240867b49377ee5a6ac7d1b6aeb537f0 (diff) | |
| download | Peniquitous-43f5b001ca73275c599a2feafa22a80aa0b433dd.tar.bz2 | |
Makefile: Use NPM Mousetrap
| -rw-r--r-- | Makefile | 4 | 
1 files changed, 2 insertions, 2 deletions
| @@ -14,7 +14,7 @@  # along with this program. If not, see <https://www.gnu.org/licenses/>. -IMPORTS := peniquitous.js lib/mousetrap/tests/libs/key-event.js +IMPORTS := peniquitous.js node_modules/mousetrap/tests/libs/key-event.js  IMPORTS_BASENAME := $(notdir $(IMPORTS))  all: peniquitous.user.js @@ -22,7 +22,7 @@ all: peniquitous.user.js  build:  	mkdir -p $@ -build/key-event.js: lib/mousetrap/tests/libs/key-event.js | build +build/key-event.js: node_modules/mousetrap/tests/libs/key-event.js | build  	sed -e '/^(function/d' -e '$$d' $< > $@  build/peniquitous.js: peniquitous.js | build | 
