summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile7
1 files changed, 3 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index be6a7e5..8e0ef9d 100644
--- a/Makefile
+++ b/Makefile
@@ -17,7 +17,6 @@ LOCALEDIR = $(SHAREDIR)/locale
MANDIR = $(SHAREDIR)/man
## Where to store the installation. Empty by default.
DESTDIR =
-JSIMPL = node
@@ -83,7 +82,7 @@ src/index.js:
.SUFFIXES: .js .js-t
tests.js-t = $(tests.js:.js=.js-t)
$(tests.js-t):
- $(JSIMPL) tests/runner.js $*.js
+ node tests/runner.js $*.js
check-t: $(tests.js-t)
@@ -140,10 +139,10 @@ uninstall:
run-ircd:
- $(JSIMPL) src/server/web.js server -l http://localhost:3000
+ node src/server/web.js server -l http://localhost:3000
run-web:
- $(JSIMPL) src/server/web.js server -l http://localhost:3003
+ node src/server/web.js server -l http://localhost:3003
## Run the web and IRC server locally.
run: