mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-07-24 11:21:54 +00:00

as discussed[0] lets move this to /nodes/{node}/hardware/pci Put this in its own subfolder and adapt module names and paths in UI. [0]: https://pve.proxmox.com/pipermail/pve-devel/2018-November/034694.html Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
16 lines
225 B
Makefile
16 lines
225 B
Makefile
include ../../../defines.mk
|
|
|
|
PERLSOURCE= \
|
|
PCI.pm
|
|
|
|
all:
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -rf *~
|
|
|
|
.PHONY: install
|
|
install:
|
|
install -d ${PERLLIBDIR}/PVE/API2/Hardware
|
|
install -m 0644 ${PERLSOURCE} ${PERLLIBDIR}/PVE/API2/Hardware
|