We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dcfcd3b commit 5d5e641Copy full SHA for 5d5e641
1 file changed
Makefile
@@ -6,6 +6,7 @@ SHELL := /bin/bash # Use bash syntax
6
7
entry:
8
@echo "usage:"
9
+ @echo "make anemomteer3 : make the anemomteer executable"
10
@echo "make check : checks that the algorithm compiles"
11
@echo "make publish : publishes the algorithm to the server"
12
@@ -24,10 +25,14 @@ deps:
24
25
.PHONY: deps
26
27
publish: check
-
28
+ @echo "Remote publishing disabled at Ed and Ali's request"
29
30
.PHONY: publish
31
32
check: deps
33
cd src && ${GOROOT}/bin/go build
34
.PHONY: check
35
+
36
+anemomteer3: deps
37
+ cd src && ${GOROOT}/bin/go build && mv src ../anemomteer3
38
+.PHONY: anemomteer3
0 commit comments