xref: /titanic_50/usr/src/cmd/hal/probing/volume/Makefile (revision 18c2aff776a775d34a4c9893a4c72e0434d68e36)
1*18c2aff7Sartem#
2*18c2aff7Sartem# CDDL HEADER START
3*18c2aff7Sartem#
4*18c2aff7Sartem# The contents of this file are subject to the terms of the
5*18c2aff7Sartem# Common Development and Distribution License (the "License").
6*18c2aff7Sartem# You may not use this file except in compliance with the License.
7*18c2aff7Sartem#
8*18c2aff7Sartem# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9*18c2aff7Sartem# or http://www.opensolaris.org/os/licensing.
10*18c2aff7Sartem# See the License for the specific language governing permissions
11*18c2aff7Sartem# and limitations under the License.
12*18c2aff7Sartem#
13*18c2aff7Sartem# When distributing Covered Code, include this CDDL HEADER in each
14*18c2aff7Sartem# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15*18c2aff7Sartem# If applicable, add the following below this CDDL HEADER, with the
16*18c2aff7Sartem# fields enclosed by brackets "[]" replaced with your own identifying
17*18c2aff7Sartem# information: Portions Copyright [yyyy] [name of copyright owner]
18*18c2aff7Sartem#
19*18c2aff7Sartem# CDDL HEADER END
20*18c2aff7Sartem#
21*18c2aff7Sartem#
22*18c2aff7Sartem# Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
23*18c2aff7Sartem# Use is subject to license terms.
24*18c2aff7Sartem#
25*18c2aff7Sartem# ident	"%Z%%M%	%I%	%E% SMI"
26*18c2aff7Sartem#
27*18c2aff7Sartem
28*18c2aff7SartemPROG =		hald-probe-volume
29*18c2aff7SartemOBJS =		probe-volume.o cdutils.o fsutils.o logger.o
30*18c2aff7SartemSRCS =		probe-volume.c
31*18c2aff7Sartem
32*18c2aff7Sarteminclude ../../../Makefile.cmd
33*18c2aff7Sarteminclude ../../Makefile.hal
34*18c2aff7Sartem
35*18c2aff7SartemROOTCMDDIR =	$(ROOTLIB_HAL)
36*18c2aff7Sartem
37*18c2aff7SartemLDLIBS +=	-lc -ldbus-1 -lhal -lfstyp -lnvpair -ladm -lefi
38*18c2aff7Sartem
39*18c2aff7SartemCPPFLAGS +=	-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
40*18c2aff7SartemCPPFLAGS +=	$(HAL_DBUS_CPPFLAGS) $(HAL_CONFIG_CPPFLAGS)
41*18c2aff7SartemCPPFLAGS +=	-I$(ROOT)/usr/include/hal -I../../utils -I../../hald
42*18c2aff7SartemC99MODE =	$(C99_ENABLE)
43*18c2aff7Sartem
44*18c2aff7Sartem.KEEP_STATE:
45*18c2aff7Sartem
46*18c2aff7Sartemall: $(PROG)
47*18c2aff7Sartem
48*18c2aff7Sartemlogger.o: ../../hald/logger.c
49*18c2aff7Sartem	$(COMPILE.c) -o $@ ../../hald/logger.c
50*18c2aff7Sartem	$(POST_PROCESS_O)
51*18c2aff7Sartem
52*18c2aff7Sartemfsutils.o: ../../utils/fsutils.c
53*18c2aff7Sartem	$(COMPILE.c) -o $@ ../../utils/fsutils.c
54*18c2aff7Sartem	$(POST_PROCESS_O)
55*18c2aff7Sartem
56*18c2aff7Sartemcdutils.o: ../../utils/cdutils.c
57*18c2aff7Sartem	$(COMPILE.c) -o $@ ../../utils/cdutils.c
58*18c2aff7Sartem	$(POST_PROCESS_O)
59*18c2aff7Sartem
60*18c2aff7Sartem$(PROG): $(OBJS)
61*18c2aff7Sartem	$(LINK.c) -o $@ $(OBJS) $(LDLIBS)
62*18c2aff7Sartem	$(POST_PROCESS)
63*18c2aff7Sartem
64*18c2aff7Sarteminstall: all $(ROOTCMD)
65*18c2aff7Sartem
66*18c2aff7Sartemclean:
67*18c2aff7Sartem	$(RM) $(OBJS)
68*18c2aff7Sartem
69*18c2aff7SartemFRC:
70*18c2aff7Sartem
71*18c2aff7Sarteminclude ../../../Makefile.targ
72