pve-access-control/PVE/API2/Makefile
2012-01-27 08:44:22 +01:00

13 lines
227 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