mirror of
https://github.com/lucaspalomodevelop/core.git
synced 2026-03-13 00:07:26 +00:00
While there, make install provide output as well and mop up a few minor issues with the previous code.
17 lines
479 B
Makefile
17 lines
479 B
Makefile
all:
|
|
|
|
install:
|
|
@mkdir -p ${DESTDIR}/usr/local/share
|
|
@cp -vr ${.CURDIR}/openvpn ${DESTDIR}/usr/local/share/
|
|
@cp -vr ${.CURDIR}/mobile-broadband-provider-info \
|
|
${DESTDIR}/usr/local/share/
|
|
|
|
plist:
|
|
@(cd ${.CURDIR}/openvpn; find * -type f) | \
|
|
xargs -n1 printf "/usr/local/share/openvpn/%s\n"
|
|
@(cd ${.CURDIR}/mobile-broadband-provider-info; find * -type f) | \
|
|
xargs -n1 printf \
|
|
"/usr/local/share/mobile-broadband-provider-info/%s\n"
|
|
|
|
.PHONY: install plist
|