-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
30 lines (24 loc) · 687 Bytes
/
Makefile
File metadata and controls
30 lines (24 loc) · 687 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
run: install
octoprint serve
@echo "Run Called"
test: install
rm -f testfiles/*.translate*
python3 test.py
@echo "Test Called"
install: .install
.install: setup.py
octoprint dev plugin:install
@touch .install
@echo "Install called"
# .install: octoprint_translatemodel/src/translate.cpp setup.py
# octoprint dev plugin:install
# @touch .install
# @echo "Install called"
clean:
rm .install
rm *.so
send:
git-scp faker "~/.octoprint/plugins/OctoPrint-GcodeLeveling" -y
ssh faker "source ~/oprint/bin/activate && cd ~/.octoprint/plugins/OctoPrint-GcodeLeveling && make install"
ssh faker sudo service octoprint restart
ssh faker tail -f .octoprint/logs/octoprint.log