Home | History | Annotate | Line # | Download | only in mount_portal
Makefile revision 1.2
      1 #	from: @(#)Makefile	8.1 (Berkeley) 6/5/93
      2 #	$Id: Makefile,v 1.2 1994/01/12 20:16:59 mycroft 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 .include <bsd.prog.mk>
     16