1994-01-12 23:01:27 +03:00
|
|
|
# from: @(#)Makefile 8.1 (Berkeley) 6/5/93
|
1994-01-28 03:31:32 +03:00
|
|
|
# $Id: Makefile,v 1.5 1994/01/28 00:33:38 cgd 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
|
1994-01-28 03:31:32 +03:00
|
|
|
LDADD+= -lcompat
|
|
|
|
DPADD+= ${LIBCOMPAT}
|
1994-01-13 02:20:50 +03:00
|
|
|
|
1994-01-12 23:01:27 +03:00
|
|
|
.include <bsd.prog.mk>
|