File tree Expand file tree Collapse file tree 3 files changed +20
-0
lines changed
Expand file tree Collapse file tree 3 files changed +20
-0
lines changed Original file line number Diff line number Diff line change 2424# DEPENDENCIES #
2525
2626include $(TOOLS_MAKE_DIR ) /lib/help/Makefile
27+ include $(TOOLS_MAKE_DIR ) /lib/repl/Makefile
2728include $(TOOLS_MAKE_DIR ) /lib/find/Makefile
2829include $(TOOLS_MAKE_DIR ) /lib/lint/Makefile
2930include $(TOOLS_MAKE_DIR ) /lib/notes/Makefile
Original file line number Diff line number Diff line change 1+
2+ # VARIABLES #
3+
4+ # Define the path of the REPL executable:
5+ REPL ?= $(BIN_DIR ) /repl
6+
7+
8+ # TARGETS #
9+
10+ # Start a REPL environment.
11+ #
12+ # This target starts a REPL environment.
13+
14+ repl : node_modules $(REPL )
15+ @echo " Starting REPL..."
16+ @$(REPL )
17+
18+ .PHONY : repl
Original file line number Diff line number Diff line change 22Usage: make <cmd>
33
44 make help Print this message.
5+ make repl Start a REPL environment.
56 make notes Search for code annotations.
67 make list-sources List all source files (excluding examples and tests).
78 make list-examples List all example files.
You can’t perform that action at this time.
0 commit comments