source:
code/Makefile@
e80f9fc
Last change on this file since e80f9fc was e87ab6d, checked in by , 11 years ago | |
---|---|
|
|
File size: 430 bytes |
Rev | Line | |
---|---|---|
[5815eef] | 1 | PREFIX?= /usr/local |
2 | BINDIR= ${PREFIX}/sbin | |
3 | MANDIR= ${PREFIX}/man/man | |
[59a7416] | 4 | |
[5815eef] | 5 | PROG= icbd |
[55923b7] | 6 | SRCS= cmd.c dns.c icb.c icbd.c logger.c |
[5815eef] | 7 | MAN= icbd.8 |
[cd7b81d] | 8 | |
[5815eef] | 9 | CFLAGS+= -W -Wall -Werror |
10 | CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations | |
11 | CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual -Wsign-compare | |
[cd7b81d] | 12 | |
[e87ab6d] | 13 | # hook up asynchronous resolver |
14 | CFLAGS+= -I${BSDSRCDIR}/lib/libc/asr | |
15 | ||
[5815eef] | 16 | DPADD= ${LIBEVENT} |
17 | LDADD= -levent | |
[cd7b81d] | 18 | |
19 | .include <bsd.prog.mk> |
Note:
See TracBrowser
for help on using the repository browser.