diff options
author | EuAndreh <eu@euandre.org> | 2023-11-10 11:59:06 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2023-11-10 11:59:06 -0300 |
commit | 948a473c8bc0e0cc4430dc978fd171457f715f5e (patch) | |
tree | 6d7916dd92ca337d17b21823f4dd1e69d5d1b4bb | |
parent | tests/assert-*: Use standartized STDERR message format (diff) | |
download | papod-948a473c8bc0e0cc4430dc978fd171457f715f5e.tar.gz papod-948a473c8bc0e0cc4430dc978fd171457f715f5e.tar.xz |
Makefile: Remove $(JSIMPL) variable
-rw-r--r-- | Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -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: |