Home | History | Annotate | Line # | Download | only in mount_portal
Makefile revision 1.6
      1 #	from: @(#)Makefile	8.3 (Berkeley) 3/27/94
      2 #	$Id: Makefile,v 1.6 1994/06/08 19:24:44 mycroft Exp $
      3 
      4 PROG=	mount_portal
      5 SRCS=	mount_portal.c activate.c conf.c getmntopts.c pt_conf.c \
      6 	pt_exec.c pt_file.c pt_tcp.c
      7 MAN8=	mount_portal.0
      8 
      9 MOUNT=	${.CURDIR}/../mount
     10 CFLAGS+= -I/sys -I${MOUNT}
     11 .PATH:	${MOUNT}
     12 
     13 DPADD=	$(LIBCOMPAT)
     14 LDADD=	-lcompat
     15 
     16 .include <bsd.prog.mk>
     17