source: code/Makefile@ 4a74b5b

Last change on this file since 4a74b5b was 4a74b5b, checked in by Izuru Yakumo <eternal-servant@…>, 7 weeks ago

Nitori Engineering

  • Property mode set to 100644
File size: 387 bytes
Line 
1PREFIX?= /usr/local
2BINDIR= ${PREFIX}/sbin
3MANDIR= ${PREFIX}/man/man8
4
5PROG= icbd
6SRCS= cmd.c dns.c icb.c icbd.c logger.c
7MAN= icbd.8
8
9.ifdef __OpenBSD__
10CFLAGS+= -W -Wall -Werror
11CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations
12CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual -Wsign-compare
13.endif
14
15DPADD= ${LIBEVENT}
16LDADD= -levent
17
18.include <bsd.prog.mk>
Note: See TracBrowser for help on using the repository browser.