mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-07-24 05:44:07 +00:00

As envisioned in[0][1], better late than never.
[0]: commit 523d5f486b
[1]: https://lists.proxmox.com/pipermail/pve-devel/2018-November/034694.html
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
17 lines
241 B
Makefile
17 lines
241 B
Makefile
include ../../../defines.mk
|
|
|
|
PERLSOURCE= \
|
|
PCI.pm \
|
|
USB.pm \
|
|
|
|
all:
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -rf *~
|
|
|
|
.PHONY: install
|
|
install:
|
|
install -d ${PERLLIBDIR}/PVE/API2/Hardware
|
|
install -m 0644 ${PERLSOURCE} ${PERLLIBDIR}/PVE/API2/Hardware
|