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 6d51c62 commit be9d04eCopy full SHA for be9d04e
Makefile
@@ -1,5 +1,7 @@
1
TOPDIR := $(PWD)
2
PLATFORMS := $(foreach platform,$(wildcard platforms/*),$(platform)/gpt)
3
+BINS := gen_partition.py msp.py ptool.py
4
+PREFIX ?= /usr/local
5
6
.PHONY: all
7
@@ -15,3 +17,6 @@ check:
15
17
# W605: invalid escape sequence
16
18
pycodestyle --select=W605 *.py
19
20
+install: $(BINS)
21
+ install -d $(DESTDIR)$(PREFIX)/bin
22
+ install -m 755 $^ $(DESTDIR)$(PREFIX)/bin
0 commit comments