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 ac66d9b commit 3e724b3Copy full SHA for 3e724b3
Makefile
@@ -1,6 +1,7 @@
1
# Variables:
2
DIST_DIR = swiftwave_service/dashboard/www
3
SUBMOD_DIR = dashboard
4
+AGENT_DIR = agent
5
6
main: build_service
7
@@ -12,3 +13,9 @@ build_service: | build_dashboard
12
13
14
install: build_service
15
cp swiftwave /usr/bin/swiftwave
16
+
17
+build_agent:
18
+ cd $(AGENT_DIR) && go build -o swiftwave-agent .
19
20
+install_agent: build_agent
21
+ cp $(AGENT_DIR)/agent /usr/bin/swiftwave-agent
agent/.gitignore
@@ -3,4 +3,5 @@ docs
agent.db
agent.db-*
docs.txt
-agent
+agent
+swiftwave-agent
0 commit comments