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
RevLine 
[5815eef]1PREFIX?= /usr/local
2BINDIR= ${PREFIX}/sbin
[4a74b5b]3MANDIR= ${PREFIX}/man/man8
[59a7416]4
[5815eef]5PROG= icbd
[55923b7]6SRCS= cmd.c dns.c icb.c icbd.c logger.c
[5815eef]7MAN= icbd.8
[cd7b81d]8
[4a74b5b]9.ifdef __OpenBSD__
[5815eef]10CFLAGS+= -W -Wall -Werror
11CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations
12CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual -Wsign-compare
[4a74b5b]13.endif
[cd7b81d]14
[5815eef]15DPADD= ${LIBEVENT}
16LDADD= -levent
[cd7b81d]17
18.include <bsd.prog.mk>
Note: See TracBrowser for help on using the repository browser.