Skip to content

Commit 5d5e641

Browse files
author
Michael Andersen
committed
Finish up makefile
1 parent dcfcd3b commit 5d5e641

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

Makefile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ SHELL := /bin/bash # Use bash syntax
66

77
entry:
88
@echo "usage:"
9+
@echo "make anemomteer3 : make the anemomteer executable"
910
@echo "make check : checks that the algorithm compiles"
1011
@echo "make publish : publishes the algorithm to the server"
1112

@@ -24,10 +25,14 @@ deps:
2425
.PHONY: deps
2526

2627
publish: check
27-
28+
@echo "Remote publishing disabled at Ed and Ali's request"
2829

2930
.PHONY: publish
3031

3132
check: deps
3233
cd src && ${GOROOT}/bin/go build
3334
.PHONY: check
35+
36+
anemomteer3: deps
37+
cd src && ${GOROOT}/bin/go build && mv src ../anemomteer3
38+
.PHONY: anemomteer3

0 commit comments

Comments
 (0)