Commit e28efdc5 authored by Franco Fichtner's avatar Franco Fichtner

make: let `install' output the plist for us

parent eb136be2
......@@ -7,8 +7,10 @@ umount:
umount -f "<above>:${.CURDIR}/src"
install:
mkdir -p ${DESTDIR}/usr/local
cp -r ${.CURDIR}/src/* ${DESTDIR}/usr/local
@mkdir -p ${DESTDIR}/usr/local
@cp -r ${.CURDIR}/src/* ${DESTDIR}/usr/local
@(cd ${.CURDIR}/src; find * -type f) | \
xargs -n1 printf "/usr/local/%s\n"
lint:
find ${.CURDIR}/src -name "*.class" -print0 | xargs -0 -n1 php -l
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment