blob: f17e18a2cba803fa0a94fba701150b786b788996 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# $OpenBSD: Makefile,v 1.4 2016/09/17 15:03:39 florian Exp $
.include <bsd.own.mk>
SUBDIR= bgplg bgplgsh bgpctl ping traceroute
INCFILES= bgplg.head \
bgplg.foot \
bgplg.css
WWWDIR= ${DESTDIR}/var/www/htdocs/bgplg
WWWFILES= openbgpd.gif \
index.html
distribution:
for i in ${INCFILES}; do \
${INSTALL} -C -o root -g wheel -m 0644 $$i ${DESTDIR}/var/www/conf/; \
done
${INSTALL} -d -o root -g wheel -m 0755 ${WWWDIR}
for i in ${WWWFILES}; do \
${INSTALL} -C -o root -g wheel -m 0644 $$i ${WWWDIR}; \
done
.include <bsd.subdir.mk>
|