blob: d8ffea56cca6d9048d8f2ae6a743ecf9d95b70a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# $Id: Makefile,v 1.2 1996/05/04 09:16:14 deraadt Exp $
RPCSRCS= bootparam_prot.x klm_prot.x mount.x nfs_prot.x\
nlm_prot.x rex.x rnusers.x rusers.x rquota.x rstat.x rwall.x\
sm_inter.x spray.x yp.x yppasswd.x
SRCS= ${RPCSRCS:R:S/$/.c/g}
HDRS= ${RPCSRCS:R:S/$/.h/g}
CLEANFILES+= ${SRCS} ${HDRS}
LIB= rpcsvc
NOMAN=
NOPIC=
all: ${HDRS}
beforedepend: ${HDRS}
includes:
install -d -o ${BINOWN} -g ${BINGRP} -m 755 \
${DESTDIR}/usr/include/rpcsvc
@for i in $(HDRS); do \
cmp -s $$i ${DESTDIR}/usr/include/rpcsvc/$$i || \
install -c -o ${BINOWN} -g ${BINGRP} -m 444 $$i \
${DESTDIR}/usr/include/rpcsvc; \
done
@for i in $(RPCSRCS); do \
cmp -s $(.CURDIR)/$$i ${DESTDIR}/usr/include/rpcsvc/$$i || \
install -c -o ${BINOWN} -g ${BINGRP} -m 444 $(.CURDIR)/$$i \
${DESTDIR}/usr/include/rpcsvc; \
done
# new suffixes have to go afterwards, because bsd.lib.mk clears them
.include <bsd.lib.mk>
.SUFFIXES: .x .c .h
.x.c:
@echo generating $@...
@rpcgen -c ${.IMPSRC} -o ${.TARGET}
.x.h:
@echo generating $@...
@rpcgen -h ${.IMPSRC} -o ${.TARGET}
|