blob: 6c9c494d5a9320b6c71f4d15df391de9993b4f12 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# $OpenBSD: Makefile,v 1.1 2003/12/17 11:46:54 henning Exp $
PROG= bgpd
SRCS= bgpd.c buffer.c session.c log.c parse.y config.c imsg.c \
rde.c rde_rib.c rde_decide.c rde_prefix.c mrt.c
CFLAGS+= -Wall -Wmissing-prototypes -Wno-uninitialized
CFLAGS+= -Wstrict-prototypes
CFLAGS+= -Wreturn-type -Wcast-qual -Wswitch
CFLAGS+= -Wpointer-arith -Wshadow
CFLAGS+= -Werror
YFLAGS=
NOMAN=
CFLAGS+= -Wall
.include <bsd.prog.mk>
publish:
-rm ${.CURDIR}/*~
-cp ${.CURDIR}/* /var/www/www/bgpd/
-scp ${.CURDIR}/* henning@cvs.openbsd.org:~/bgpd/
|