blob: a5730176df5c2756a1e4c2e22c4a0fe11045a0fd (
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.3 2014/04/26 11:02:45 florian Exp $
.include <bsd.own.mk>
SUBDIR= bgplg bgplgsh bgpctl ping traceroute ping6
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>
|