source: code/Makefile@ 1bcb666

Last change on this file since 1bcb666 was e87ab6d, checked in by Mike Belopuhov <mike@…>, 11 years ago

Convert DNS code to use ASR

  • Property mode set to 100644
File size: 430 bytes
RevLine 
[5815eef]1PREFIX?= /usr/local
2BINDIR= ${PREFIX}/sbin
3MANDIR= ${PREFIX}/man/man
[59a7416]4
[5815eef]5PROG= icbd
[55923b7]6SRCS= cmd.c dns.c icb.c icbd.c logger.c
[5815eef]7MAN= icbd.8
[cd7b81d]8
[5815eef]9CFLAGS+= -W -Wall -Werror
10CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations
11CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual -Wsign-compare
[cd7b81d]12
[e87ab6d]13# hook up asynchronous resolver
14CFLAGS+= -I${BSDSRCDIR}/lib/libc/asr
15
[5815eef]16DPADD= ${LIBEVENT}
17LDADD= -levent
[cd7b81d]18
19.include <bsd.prog.mk>
Note: See TracBrowser for help on using the repository browser.