We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
tools
dlink
1 parent 6f32b75 commit c55c193Copy full SHA for c55c193
Makefile
@@ -1,10 +1,16 @@
1
+TOOLS := ${CURDIR}/.tools
2
+
3
.DEFAULT_GOAL := help
4
5
help:
6
@cat $(MAKEFILE_LIST) | \
7
perl -ne 'print if /^\w+.*##/;' | \
8
perl -pe 's/(.*):.*##\s*/sprintf("%-20s",$$1)/eg;'
9
10
+tools: FORCE ## Install development tools
11
+ @mkdir -p ${TOOLS}
12
+ @deno install -f --allow-write --allow-read --allow-net --root ${TOOLS} https://deno.land/x/dlink/dlink.ts
13
14
fmt: FORCE ## Format code
15
@deno fmt
16
@@ -20,4 +26,8 @@ type-check: FORCE ## Type check
20
26
test: FORCE ## Test
21
27
@deno test --unstable -A
22
28
29
+dlink: FORCE ## Update dlink
30
+ @${TOOLS}/bin/dlink
31
+ @make fmt
32
23
33
FORCE:
0 commit comments