source:
code/Makefile@
709589d
Last change on this file since 709589d was 55923b7, checked in by , 11 years ago | |
---|---|
|
|
File size: 360 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 | |
[5815eef] | 13 | DPADD= ${LIBEVENT} |
14 | LDADD= -levent | |
[cd7b81d] | 15 | |
16 | .include <bsd.prog.mk> |
Note:
See TracBrowser
for help on using the repository browser.