1 # 2 # CDDL HEADER START 3 # 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. 7 # 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. 12 # 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] 18 # 19 # CDDL HEADER END 20 # 21 # 22 # Copyright 2006 Sun Microsystems, Inc. All rights reserved. 23 # Use is subject to license terms. 24 # 25 # ident "%Z%%M% %I% %E% SMI" 26 # 27 28 include ../../Makefile.master 29 30 PROTOCOL_DIR= $(ROOT)/usr/include/rpcsvc 31 32 SUBDIRS= $(MACH) 33 $(BUILD64)SUBDIRS += $(MACH64) 34 35 DERIVED_FILES= \ 36 common/bootparam_prot_xdr.c \ 37 common/rstat_xdr.c \ 38 common/rusers_xdr.c \ 39 common/spray_xdr.c \ 40 common/nlm_prot.c \ 41 common/sm_inter_xdr.c \ 42 common/mount_xdr.c \ 43 common/nsm_addr_xdr.c \ 44 common/rpc_sztypes.c 45 46 CLEANFILES += $(DERIVED_FILES) 47 48 # include library definitions 49 include ../Makefile.lib 50 51 # definitions for install_h target 52 HDRS= $(TXTS) 53 ROOTHDRDIR= $(ROOT)/usr/include/rpcsvc 54 ROOTHDRS= $(HDRS:%=$(ROOTHDRDIR)/%) 55 CHECKHDRS= $(HDRS:%.h=%.check) 56 57 # install rule for install_h target 58 $(ROOTHDRDIR)/%: % 59 $(INS.file) 60 61 all := TARGET= all 62 clean := TARGET= clean 63 clobber := TARGET= clobber 64 install := TARGET= install 65 lint := TARGET= lint 66 67 .KEEP_STATE: 68 69 all: $(DERIVED_FILES) $(TXTS) .WAIT $(SUBDIRS) 70 71 install: all .WAIT $(SUBDIRS) 72 73 install_h: $(DERIVED_FILES) $(ROOTHDRS) 74 75 check: $(CHECKHDRS) 76 77 clean clobber lint: $(SUBDIRS) 78 79 # 80 # Rules for building the derived files 81 # 82 # Derived files 83 # 84 common/bootparam_prot_xdr.c: $(PROTOCOL_DIR)/bootparam_prot.x 85 $(RPCGEN) -c $(PROTOCOL_DIR)/bootparam_prot.x > $@ 86 87 common/rstat_xdr.c: $(PROTOCOL_DIR)/rstat.x 88 $(RPCGEN) -c $(PROTOCOL_DIR)/rstat.x > $@ 89 90 common/rusers_xdr.c: $(PROTOCOL_DIR)/rusers.x 91 $(RPCGEN) -c $(PROTOCOL_DIR)/rusers.x > $@ 92 93 common/sm_inter_xdr.c: $(PROTOCOL_DIR)/sm_inter.x 94 $(RPCGEN) -c $(PROTOCOL_DIR)/sm_inter.x > $@ 95 96 common/spray_xdr.c: $(PROTOCOL_DIR)/spray.x 97 $(RPCGEN) -c $(PROTOCOL_DIR)/spray.x > $@ 98 99 common/nlm_prot.c: $(PROTOCOL_DIR)/nlm_prot.x 100 $(RPCGEN) -c $(PROTOCOL_DIR)/nlm_prot.x > $@ 101 102 common/mount_xdr.c: $(PROTOCOL_DIR)/mount.x 103 $(RPCGEN) -c $(PROTOCOL_DIR)/mount.x > $@ 104 105 common/nsm_addr_xdr.c: $(PROTOCOL_DIR)/nsm_addr.x 106 $(RPCGEN) -c $(PROTOCOL_DIR)/nsm_addr.x > $@ 107 108 common/rpc_sztypes.c: $(PROTOCOL_DIR)/rpc_sztypes.x 109 $(RPCGEN) -c $(PROTOCOL_DIR)/rpc_sztypes.x > $@ 110 111 # include library targets 112 include ../Makefile.targ 113 114 $(SUBDIRS): FRC 115 @cd $@; pwd; $(MAKE) $(TARGET) 116 117 FRC: