Makefile revision 1.1
1#	from: @(#)Makefile	8.1 (Berkeley) 6/5/93
2#	$Id: Makefile,v 1.1 1994/01/12 20:01:27 cgd Exp $
3
4.if exists(${.CURDIR}/../../sys)
5CFLAGS= -I${.CURDIR}/../../sys
6.else
7CFLAGS= -I/sys
8.endif
9
10PROG=	mount_portal
11PTAL=	pt_conf.c pt_exec.c pt_file.c pt_tcp.c
12SRCS=	mount_portal.c conf.c activate.c ${PTAL}
13MAN8=	mount_portal.0
14
15.include <bsd.prog.mk>
16