4 # The contents of this file are subject to the terms of the
5 # Common Development and Distribution License (the "License").
6 # You may not use this file except in compliance with the License.
8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 # or http://www.opensolaris.org/os/licensing.
10 # See the License for the specific language governing permissions
11 # and limitations under the License.
13 # When distributing Covered Code, include this CDDL HEADER in each
14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 # If applicable, add the following below this CDDL HEADER, with the
16 # fields enclosed by brackets "[]" replaced with your own identifying
17 # information: Portions Copyright [yyyy] [name of copyright owner]
22 # Copyright 2015 Gary Mills
23 # Copyright 2006 Sun Microsystems, Inc. All rights reserved.
24 # Use is subject to license terms.
27 include ..
/..
/Makefile.master
29 # Relative path to ensure path to header file is also relative
30 HEAD_DIR
= ..
/..
/head
/rpcsvc
31 UTS_DIR
= ..
/..
/uts
/common
/rpcsvc
32 RPC_DIR
= ..
/..
/uts
/common
/rpc
35 $(BUILD64
)SUBDIRS
+= $(MACH64
)
38 common
/bootparam_prot_xdr.c \
43 common
/sm_inter_xdr.c \
45 common
/nsm_addr_xdr.c \
48 CLEANFILES
+= $(DERIVED_FILES
)
50 # include library definitions
51 include ..
/Makefile.lib
53 # definitions for install_h target
55 ROOTHDRDIR
= $(ROOT
)/usr
/include/rpcsvc
56 ROOTHDRS
= $(HDRS
:%=$(ROOTHDRDIR
)/%)
57 CHECKHDRS
= $(HDRS
:%.h
=%.
check)
59 # install rule for install_h target
64 clean := TARGET
= clean
65 clobber := TARGET
= clobber
66 install := TARGET
= install
71 all: $(DERIVED_FILES
) $(TXTS
) .WAIT
$(SUBDIRS
)
73 install: all .WAIT
$(SUBDIRS
)
75 install_h
: $(DERIVED_FILES
) $(ROOTHDRS
)
79 clean clobber lint
: $(SUBDIRS
)
82 # Rules for building the derived files
86 common
/bootparam_prot_xdr.c
: $(HEAD_DIR
)/bootparam_prot.x
87 $(RPCGEN
) -c
$(HEAD_DIR
)/bootparam_prot.x
> $@
89 common
/rstat_xdr.c
: $(HEAD_DIR
)/rstat.x
90 $(RPCGEN
) -c
$(HEAD_DIR
)/rstat.x
> $@
92 common
/rusers_xdr.c
: $(HEAD_DIR
)/rusers.x
93 $(RPCGEN
) -c
$(HEAD_DIR
)/rusers.x
> $@
95 common
/sm_inter_xdr.c
: $(UTS_DIR
)/sm_inter.x
96 $(RPCGEN
) -c
$(UTS_DIR
)/sm_inter.x
> $@
98 common
/spray_xdr.c
: $(HEAD_DIR
)/spray.x
99 $(RPCGEN
) -c
$(HEAD_DIR
)/spray.x
> $@
101 common
/nlm_prot.c
: $(UTS_DIR
)/nlm_prot.x
102 $(RPCGEN
) -c
$(UTS_DIR
)/nlm_prot.x
> $@
104 common
/mount_xdr.c
: $(HEAD_DIR
)/mount.x
105 $(RPCGEN
) -c
$(HEAD_DIR
)/mount.x
> $@
107 common
/nsm_addr_xdr.c
: $(UTS_DIR
)/nsm_addr.x
108 $(RPCGEN
) -c
$(UTS_DIR
)/nsm_addr.x
> $@
110 common
/rpc_sztypes.c
: $(RPC_DIR
)/rpc_sztypes.x
111 $(RPCGEN
) -c
$(RPC_DIR
)/rpc_sztypes.x
> $@
113 # include library targets
114 include ..
/Makefile.targ
117 @cd
$@
; pwd
; $(MAKE
) $(TARGET
)