source:
code/Makefile
Last change on this file was 4a74b5b, checked in by , 7 weeks ago | |
---|---|
|
|
File size: 387 bytes |
Rev | Line | |
---|---|---|
[5815eef] | 1 | PREFIX?= /usr/local |
2 | BINDIR= ${PREFIX}/sbin | |
[4a74b5b] | 3 | MANDIR= ${PREFIX}/man/man8 |
[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 | |
[4a74b5b] | 9 | .ifdef __OpenBSD__ |
[5815eef] | 10 | CFLAGS+= -W -Wall -Werror |
11 | CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations | |
12 | CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual -Wsign-compare | |
[4a74b5b] | 13 | .endif |
[cd7b81d] | 14 | |
[5815eef] | 15 | DPADD= ${LIBEVENT} |
16 | LDADD= -levent | |
[cd7b81d] | 17 | |
18 | .include <bsd.prog.mk> |
Note:
See TracBrowser
for help on using the repository browser.