xref: /illumos-gate/usr/src/cmd/rmmount/Makefile (revision 581cede61ac9c14d8d4ea452562a567189eead78)
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
28PROG =		rmmount
29LOCAL_OBJS =	rmmount.o
30RMVOLMGR_OBJS =	rmm_common.o vold.o
31OBJS =		$(LOCAL_OBJS) $(RMVOLMGR_OBJS)
32LOCAL_SRCS =	$(LOCAL_OBJS:%.o=%.c)
33RMVOLGMR_SRCS =	$(RMVOLMGR_OBJS:%.o=$(SRC)/cmd/rmvolmgr/%.c)
34SRCS =		$(LOCAL_SRCS) $(RMVOLMGR_SRCS)
35
36include $(SRC)/cmd/Makefile.cmd
37include $(SRC)/cmd/hal/Makefile.hal
38
39LDLIBS +=	-ldbus-1 -ldbus-glib-1 -lglib-2.0 -lhal -lhal-storage -lcontract
40
41CPPFLAGS +=	$(HAL_DBUS_CPPFLAGS) $(HAL_GLIB_CPPFLAGS)
42CPPFLAGS +=	-I$(ROOT)/usr/include/hal
43CPPFLAGS +=	-I$(SRC)/cmd/rmvolmgr
44C99MODE =	$(C99_ENABLE)
45
46.KEEP_STATE:
47
48all: $(PROG)
49
50$(PROG): $(OBJS)
51	$(LINK.c) -o $(PROG) $(OBJS) $(LDLIBS)
52	$(POST_PROCESS)
53
54install: all $(ROOTPROG)
55	-$(RM) $(ROOT)/usr/bin/rmumount
56	-$(RM) $(ROOT)/usr/sbin/rmmount
57	-$(SYMLINK) ./rmmount $(ROOT)/usr/bin/rmumount
58	-$(SYMLINK) ../bin/rmmount $(ROOT)/usr/sbin/rmmount
59
60rmm_common.o: $(SRC)/cmd/rmvolmgr/rmm_common.c $(SRC)/cmd/rmvolmgr/rmm_common.h
61	$(COMPILE.c) -o $@ $(SRC)/cmd/rmvolmgr/rmm_common.c
62	$(POST_PROCESS_O)
63
64vold.o: $(SRC)/cmd/rmvolmgr/vold.c $(SRC)/cmd/rmvolmgr/vold.h
65	$(COMPILE.c) -o $@ $(SRC)/cmd/rmvolmgr/vold.c
66	$(POST_PROCESS_O)
67
68clean:
69	$(RM) $(OBJS)
70
71include ../Makefile.targ
72