Home | History | Annotate | Line # | Download | only in lpd
Makefile revision 1.15
      1  1.15   itojun #	$NetBSD: Makefile,v 1.15 2002/08/12 18:03:41 itojun Exp $
      2   1.5      cgd #	@(#)Makefile	8.1 (Berkeley) 6/6/93
      3   1.1      cgd 
      4   1.1      cgd PROG=	lpd
      5   1.6      cgd MAN=	lpd.8
      6  1.12   itojun SRCS=	lpd.c printjob.c recvjob.c lpdchar.c key.c modes.c ttcompat.c rcmd.c
      7  1.15   itojun 
      8  1.15   itojun CPPFLAGS+=-DLIBWRAP
      9  1.15   itojun LDADD+=	-lwrap
     10  1.15   itojun DPADD+=	${LIBWRAP}
     11  1.12   itojun 
     12  1.12   itojun # the ugly hack is to correctly include lib/libc/include/pathnames.h,
     13  1.12   itojun # not usr.sbin/lpr/common_source/pathnames.h
     14  1.12   itojun rcmd.o: rcmd.c
     15  1.14  mycroft 	${CC} ${CFLAGS} -I${.CURDIR}/../../../lib/libc/include -DINET6 \
     16  1.14  mycroft 	    ${CPPFLAGS} -c ${.IMPSRC}
     17  1.12   itojun 
     18  1.12   itojun .PATH:	${.CURDIR}/../../../lib/libc/net
     19   1.1      cgd 
     20   1.1      cgd .include <bsd.prog.mk>
     21