diff options
| -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: |
