source: code/Makefile@ 411aa63

Last change on this file since 411aa63 was ee0e95f, checked in by Florian Obser <florian@…>, 11 years ago

new and public asr api; from eric@
OK mikeb

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