Home | History | Annotate | Line # | Download | only in syslogd
Makefile revision 1.19
      1  1.19     lukem #	$NetBSD: Makefile,v 1.19 2005/01/10 02:58:59 lukem Exp $
      2   1.6     perry #	from: @(#)Makefile	8.1 (Berkeley) 6/6/93
      3   1.1       cgd 
      4  1.18     lukem .include <bsd.own.mk>
      5  1.18     lukem 
      6   1.1       cgd PROG=	syslogd
      7  1.17  christos SRCS=	syslogd.c utmpentry.c
      8   1.5       cgd MAN=	syslogd.8 syslog.conf.5
      9   1.9  christos DPADD+=${LIBUTIL}
     10   1.9  christos LDADD+=-lutil
     11  1.13     perry #make symlink to old socket location for transitional period
     12  1.13     perry SYMLINKS=	/var/run/log /dev/log
     13  1.18     lukem .PATH.c: ${NETBSDSRCDIR}/usr.bin/who
     14  1.18     lukem CPPFLAGS+=-I${NETBSDSRCDIR}/usr.bin/who -DSUPPORT_UTMPX -DSUPPORT_UTMP
     15  1.15    itojun 
     16  1.19     lukem .if (${USE_INET6} != "no")
     17  1.19     lukem CPPFLAGS+=-DINET6
     18  1.19     lukem .endif
     19  1.19     lukem 
     20  1.15    itojun CPPFLAGS+=-DLIBWRAP
     21  1.15    itojun LDADD+=	-lwrap
     22  1.15    itojun DPADD+=	${LIBWRAP}
     23   1.1       cgd 
     24   1.1       cgd .include <bsd.prog.mk>
     25