1994-05-26 05:23:31 +00:00
|
|
|
# @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
|
|
|
|
|
|
PROG = amq
|
1994-08-11 01:46:41 +00:00
|
|
|
MAN8 = amq.8
|
1994-05-26 05:23:31 +00:00
|
|
|
SRCS = amq.c amq_clnt.c amq_xdr.c misc_rpc.c
|
1997-04-19 09:15:25 +00:00
|
|
|
CFLAGS+=-I${.OBJDIR}
|
1994-05-26 05:23:31 +00:00
|
|
|
CFLAGS+=-I${.CURDIR}/../include
|
|
|
|
CFLAGS+=-I${.CURDIR}/../rpcx
|
|
|
|
CFLAGS+=-I${.CURDIR}/../config
|
|
|
|
CFLAGS+=-DARCH_REP=\"${MACHINE}\"
|
|
|
|
CFLAGS+=-DOS_REP=\"bsd44\"
|
|
|
|
CFLAGS+=-DOS_HDR=\"os-bsd44.h\"
|
|
|
|
.PATH: ${.CURDIR}/../rpcx ${.CURDIR}/../amd
|
1997-04-19 09:15:25 +00:00
|
|
|
CLEANFILES+=nfs_prot.h
|
|
|
|
RPCCOM = rpcgen
|
1997-05-23 07:45:42 +00:00
|
|
|
NFS_PROT_X= ${DESTDIR}/usr/include/rpcsvc/nfs_prot.x
|
1997-04-29 08:42:34 +00:00
|
|
|
DPSRCS= nfs_prot.h
|
1997-04-19 09:15:25 +00:00
|
|
|
|
|
|
|
nfs_prot.h: ${NFS_PROT_X}
|
|
|
|
${RPCCOM} -h ${NFS_PROT_X} -o ${.TARGET}
|
|
|
|
|
|
|
|
${OBJS} beforedepend: nfs_prot.h
|
1994-05-26 05:23:31 +00:00
|
|
|
|
|
|
|
.include "../../Makefile.inc"
|
|
|
|
.include <bsd.prog.mk>
|