Home | History | Annotate | Line # | Download | only in mount_portal
Makefile revision 1.3
      1 #	from: @(#)Makefile	8.1 (Berkeley) 6/5/93
      2 #	$Id: Makefile,v 1.3 1994/01/12 23:20:50 cgd Exp $
      3 
      4 .if exists(${.CURDIR}/../../sys)
      5 CFLAGS+=-I${.CURDIR}/../../sys
      6 .else
      7 CFLAGS+=-I/sys
      8 .endif
      9 
     10 PROG=	mount_portal
     11 PTAL=	pt_conf.c pt_exec.c pt_file.c pt_tcp.c
     12 SRCS=	mount_portal.c conf.c activate.c ${PTAL}
     13 MAN8=	mount_portal.0
     14 
     15 LDADD=	-lcompat
     16 DPADD=	${LIBCOMPAT}
     17 
     18 .include <bsd.prog.mk>
     19