xref: /titanic_41/usr/src/cmd/lvm/rpc.mdcommd/i386/Makefile (revision e95181dad4cc30742055089ecd61e6ccb97986e0)
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, Version 1.0 only
6# (the "License").  You may not use this file except in compliance
7# with the License.
8#
9# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10# or http://www.opensolaris.org/os/licensing.
11# See the License for the specific language governing permissions
12# and limitations under the License.
13#
14# When distributing Covered Code, include this CDDL HEADER in each
15# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16# If applicable, add the following below this CDDL HEADER, with the
17# fields enclosed by brackets "[]" replaced with your own identifying
18# information: Portions Copyright [yyyy] [name of copyright owner]
19#
20# CDDL HEADER END
21#
22#
23# Copyright 2005 Sun Microsystems, Inc.  All rights reserved.
24# Use is subject to license terms.
25#
26
27COMMD = rpc.mdcommd
28MDDOORS = mddoors
29
30PROG = $(COMMD) $(MDDOORS)
31
32DERIVED_FILES = mdmn_commd_xdr.c
33
34OBJECTS =	mdmn_commd_server.o \
35		mdmn_commd_service.o \
36		mddoors.o
37
38COMMD_OBJECTS =	mdmn_commd_server.o \
39		mdmn_commd_service.o \
40		mdmn_subr.o \
41		mdmn_commd_xdr.o
42
43MDDOORS_OBJECTS = mddoors.o
44
45LINTOBJECTS =	mdmn_commd_server.o  mdmn_commd_service.o mdmn_subr.o mddoors.o
46
47OBJECTS +=	$(DERIVED_FILES:.c=.o)
48
49SRCS = $(OBJECTS:%.o=../%.c)
50LINTSRCS =	$(LINTOBJECTS:%.o=../%.c)
51
52ROOTLIBLVM = $(ROOTLIB)/lvm
53
54include ../../../Makefile.cmd
55include ../../Makefile.lvm
56
57LDLIBS +=	-lmeta
58
59CFLAGS += $(DEFINES)
60#
61#
62lint := LINTFLAGS += -m
63
64%_svc.c := RPCGENFLAGS += -K -1
65
66.KEEP_STATE:
67
68%.o:    ../%.c
69	$(COMPILE.c) $<
70
71all:	$(PROG)
72
73$(COMMD): $(DERIVED_FILES) $(COMMD_OBJECTS)
74	$(LINK.c) -o $@ $(COMMD_OBJECTS) $(LDLIBS) -lnsl
75	$(POST_PROCESS)
76
77$(MDDOORS): ../mddoors.c
78	$(COMPILE.c) ../mddoors.c
79	$(LINK.c) -o $@ $(MDDOORS_OBJECTS) $(LDLIBS)
80	$(POST_PROCESS)
81
82INSTPROGS = $(ROOTUSRSBIN)/$(COMMD) $(ROOTLIBLVM)/$(MDDOORS)
83install: all $(ROOTLIBLVM) $(INSTPROGS)
84
85cstyle:
86	$(CSTYLE) $(SRCS)
87
88lint:
89	for f in $(LINTSRCS) ; do \
90		$(LINT.c) $(LINTFLAGS) $$f ; \
91	done
92
93clean:
94	$(RM) $(OBJECTS) $(DERIVED_FILES) *.o
95
96clobber: clean
97	$(RM) $(PROG) $(CLOBBERFILES)
98
99$(DERIVED_FILES): $(SRC)/uts/common/sys/lvm/mdmn_commd.x
100	$(RPCGEN) -c $(SRC)/uts/common/sys/lvm/mdmn_commd.x -o $@
101
102$(ROOTLIBLVM)/%: %
103	$(INS.file)
104
105$(ROOTLIBLVM):
106	$(INS.dir)
107
108