You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
369 B
12 lines
369 B
PREFIX?=/usr/local |
|
|
|
all: install |
|
|
|
install: |
|
install -m 755 bin/uncloud-init $(PREFIX)/bin/uncloud-init |
|
install -m 755 bin/uncloud-init-growpart $(PREFIX)/bin/uncloud-init-growpart |
|
if command -v systemctl; then \ |
|
install -m 644 uncloud-init.service /etc/systemd/system/uncloud-init.service; \ |
|
else \ |
|
install -m 755 uncloud-init.rc /etc/init.d/uncloud-init; \ |
|
fi
|
|
|