Home | History | Annotate | Line # | Download | only in mount_portal
Makefile revision 1.5
      1 #	from: @(#)Makefile	8.1 (Berkeley) 6/5/93
      2 #	$Id: Makefile,v 1.5 1994/01/28 00:33:38 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 LDADD+=	-lcompat
     15 DPADD+=	${LIBCOMPAT}
     16 
     17 .include <bsd.prog.mk>
     18