pve-access-control/PVE/API2/Makefile
2011-08-23 07:27:48 +02:00

13 lines
221 B
Makefile

API2_SOURCES= \
AccessControl.pm \
Domains.pm \
ACL.pm \
Role.pm \
Group.pm \
User.pm
.PHONY: install
install:
for i in ${API2_SOURCES}; do install -D -m 0644 $$i ${DESTDIR}${PERLDIR}/PVE/API2/$$i; done