1# $OpenBSD: Makefile,v 1.7 2017/04/12 19:19:11 krw Exp $ 2 3.include <bsd.own.mk> 4 5SRCS= bootp.c confpars.c db.c dhcp.c dhcpd.c bpf.c packet.c log.c \ 6 dispatch.c print.c memory.c options.c inet.c conflex.c parse.c \ 7 alloc.c tables.c tree.c hash.c convert.c icmp.c pfutils.c sync.c \ 8 udpsock.c 9PROG= dhcpd 10MAN= dhcpd.8 dhcpd.conf.5 dhcpd.leases.5 dhcp-options.5 11 12LDADD+=-lcrypto 13CFLAGS+=-Wall 14 15.include <bsd.prog.mk> 16CFLAGS+=-Wstrict-prototypes -Wmissing-prototypes 17CFLAGS+=-Wmissing-declarations 18CFLAGS+=-Wshadow -Wpointer-arith -Wcast-qual 19