mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-08-25 06:53:31 +00:00

Moved code into PVE/AutoBalloon.pm, and added a regression tests in bin/test/balloontest.pl
23 lines
285 B
Makefile
23 lines
285 B
Makefile
include ../../defines.mk
|
|
|
|
all:
|
|
|
|
check:
|
|
./balloontest.pl
|
|
|
|
SCRIPTS = \
|
|
example1.pl \
|
|
example2.pl
|
|
|
|
.PHONY: install
|
|
install: ${SCRIPTS}
|
|
install -d ${DOCDIR}/examples
|
|
install -m 0755 ${SCRIPTS} ${DOCDIR}/examples
|
|
|
|
.PHONY: distclean
|
|
distclean: clean
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -rf *~
|