summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2023-11-10 11:59:06 -0300
committerEuAndreh <eu@euandre.org>2023-11-10 11:59:06 -0300
commit948a473c8bc0e0cc4430dc978fd171457f715f5e (patch)
tree6d7916dd92ca337d17b21823f4dd1e69d5d1b4bb
parenttests/assert-*: Use standartized STDERR message format (diff)
downloadpapod-948a473c8bc0e0cc4430dc978fd171457f715f5e.tar.gz
papod-948a473c8bc0e0cc4430dc978fd171457f715f5e.tar.xz
Makefile: Remove $(JSIMPL) variable
-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: