File tree Expand file tree Collapse file tree 3 files changed +26
-0
lines changed
Expand file tree Collapse file tree 3 files changed +26
-0
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ include $(TOOLS_MAKE_LIB_DIR)/docs/Makefile
1919include $(TOOLS_MAKE_LIB_DIR ) /examples/Makefile
2020include $(TOOLS_MAKE_LIB_DIR ) /install/Makefile
2121include $(TOOLS_MAKE_LIB_DIR ) /licenses/Makefile
22+ include $(TOOLS_MAKE_LIB_DIR ) /links/Makefile
2223include $(TOOLS_MAKE_LIB_DIR ) /lint/Makefile
2324include $(TOOLS_MAKE_LIB_DIR ) /ls/Makefile
2425include $(TOOLS_MAKE_LIB_DIR ) /markdown-equations/Makefile
Original file line number Diff line number Diff line change 1+
2+ # DEPENDENCIES #
3+
4+ include $(TOOLS_MAKE_LIB_DIR ) /links/links.mk
Original file line number Diff line number Diff line change 1+
2+ # VARIABLES #
3+
4+ # Define the command for returning a citation reference:
5+ INSERT_LINK ?= $(NODE ) $(TOOLS_DIR ) /links/create/bin/cli
6+
7+ # Define the command-line options to be used when executing the command:
8+ INSERT_LINK_FLAGS ?= \
9+ --database $(ROOT_DIR ) /docs/links/database.json
10+
11+
12+ # TARGETS #
13+
14+ # Create a link entry.
15+ #
16+ # This target creates a link entry in the link database.
17+
18+ links-insert : $(NODE_MODULES )
19+ $(QUIET ) $(INSERT_LINK ) $(INSERT_LINK_FLAGS )
20+
21+ .PHONY : links-insert
You can’t perform that action at this time.
0 commit comments