blob: caa4a639993a82ab9bf891b4e033c18bd6fd2133 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# $OpenBSD: Makefile,v 1.5 2001/12/01 23:27:23 miod Exp $
PROG= rarpd
SRCS= rarpd.c arptab.c
MAN= rarpd.8
CPPFLAGS+=-DHAVE_IFADDRS_H
LDADD+= -lutil
DPADD+= ${LIBUTIL}
# Uncomment the following to require a boot file in TFTP_DIR
# to exist for a rarp reply to be sent.
# CFLAGS+=-DREQUIRE_TFTPBOOT
.include <bsd.prog.mk>
|