From 948a473c8bc0e0cc4430dc978fd171457f715f5e Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Fri, 10 Nov 2023 11:59:06 -0300 Subject: Makefile: Remove $(JSIMPL) variable --- Makefile | 7 +++---- 1 file 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: -- cgit v1.2.3