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.
1 parent 88b28db commit f2854c2Copy full SHA for f2854c2
Makefile
@@ -0,0 +1,24 @@
1
+#!make
2
+MAKEFLAGS += --silent
3
+
4
+# This allows us to accept extra arguments (by doing nothing when we get a job that doesn't match,
5
+# rather than throwing an error).
6
+%:
7
+ @:
8
9
+# $(MAKECMDGOALS) is the list of "targets" spelled out on the command line
10
+stagel:
11
+ git clone --quiet https://github.com/mongodb/snooty-scripts.git build_scripts
12
+ @ cd build_scripts && npm install
13
+ @ source ~/.config/.snootyenv && node build_scripts/app.js $(filter-out $@,$(MAKECMDGOALS))
14
+ @ rm -rf build_scripts
15
16
+commit:
17
18
19
+local:
20
21
22
+clean:
23
+ rm -rf build
24
0 commit comments