mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-07-06 02:28:06 +00:00
21 lines
315 B
Makefile
21 lines
315 B
Makefile
include ../../../defines.mk
|
|
|
|
PERLSOURCE = \
|
|
Bootstrap.pm \
|
|
HTML.pm \
|
|
Standard.pm
|
|
|
|
all:
|
|
|
|
.PHONY: distclean
|
|
distclean: clean
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -rf *~
|
|
|
|
.PHONY: install
|
|
install: ${PERLSOURCE}
|
|
install -d ${PERLLIBDIR}/PVE/API2/Formatter
|
|
install -m 0644 ${PERLSOURCE} ${PERLLIBDIR}/PVE/API2/Formatter
|