blob: 5e52a775303b05386f36025c6d0a7a50d496b052 (
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.2 2010/04/02 21:20:49 sthen Exp $
.include <bsd.own.mk>
SUBDIR= bgplg bgplgsh bgpctl ping traceroute ping6 traceroute6
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>
|