mirror of
git://git.proxmox.com/git/qemu-server.git
synced 2025-01-22 22:03:55 +03:00
13 lines
305 B
Makefile
13 lines
305 B
Makefile
|
DESTDIR=
|
||
|
USRSHAREDIR=$(DESTDIR)/usr/share/qemu-server
|
||
|
|
||
|
.PHONY: install
|
||
|
install: pve-usb.cfg pve-q35.cfg pve-q35-4.0.cfg
|
||
|
install -d $(USRSHAREDIR)
|
||
|
install -m 0644 pve-usb.cfg $(USRSHAREDIR)
|
||
|
install -m 0644 pve-q35.cfg $(USRSHAREDIR)
|
||
|
install -m 0644 pve-q35-4.0.cfg $(USRSHAREDIR)
|
||
|
|
||
|
.PHONY: clean
|
||
|
clean:
|