18 lines
260 B
Makefile
18 lines
260 B
Makefile
include ../../defines.mk
|
|
|
|
PERLSOURCE = \
|
|
Graphite.pm \
|
|
InfluxDB.pm \
|
|
Plugin.pm
|
|
|
|
all:
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -rf *~
|
|
|
|
.PHONY: install
|
|
install: $(PERLSOURCE)
|
|
install -d $(PERLLIBDIR)/PVE/Status
|
|
install -m 0644 $(PERLSOURCE) $(PERLLIBDIR)/PVE/Status
|