1994-01-12 23:01:27 +03:00
|
|
|
# from: @(#)Makefile 8.1 (Berkeley) 6/5/93
|
1994-01-12 23:16:35 +03:00
|
|
|
# $Id: Makefile,v 1.2 1994/01/12 20:16:59 mycroft Exp $
|
1994-01-12 23:01:27 +03:00
|
|
|
|
|
|
|
.if exists(${.CURDIR}/../../sys)
|
1994-01-12 23:16:35 +03:00
|
|
|
CFLAGS+=-I${.CURDIR}/../../sys
|
1994-01-12 23:01:27 +03:00
|
|
|
.else
|
1994-01-12 23:16:35 +03:00
|
|
|
CFLAGS+=-I/sys
|
1994-01-12 23:01:27 +03:00
|
|
|
.endif
|
|
|
|
|
|
|
|
PROG= mount_portal
|
|
|
|
PTAL= pt_conf.c pt_exec.c pt_file.c pt_tcp.c
|
|
|
|
SRCS= mount_portal.c conf.c activate.c ${PTAL}
|
|
|
|
MAN8= mount_portal.0
|
|
|
|
|
|
|
|
.include <bsd.prog.mk>
|