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 
  26 PROG =          rmvolmgr
  27 OBJS =          rmm_common.o rmvolmgr.o vold.o
  28 SRCS =          $(OBJS:%.o=%.c)
  29 
  30 MANIFEST =      rmvolmgr.xml
  31 SVCMETHOD =     svc-rmvolmgr
  32 
  33 include ../Makefile.cmd
  34 include ../hal/Makefile.hal
  35 
  36 POFILE=rmvolmgr_all.po
  37 POFILES=$(OBJS:%.o=%.po)
  38 
  39 LDLIBS +=       -ldbus-1 -ldbus-glib-1 -lglib-2.0 -lhal -lhal-storage \
  40                     -lcontract -lscf
  41 ADJUNCT_LIBS =  libdbus-1.so libdbus-glib-1.so libglib-2.0.so
  42 
  43 CPPFLAGS +=     $(HAL_DBUS_CPPFLAGS) $(HAL_GLIB_CPPFLAGS)
  44 CPPFLAGS +=     -I$(ROOT)/usr/include/hal
  45 CSTD =  $(CSTD_GNU99)
  46 
  47 CERRWARN +=     -_gcc=-Wno-switch
  48 CERRWARN +=     -_gcc=-Wno-uninitialized
  49 CERRWARN +=     -_gcc=-Wno-unused-variable
  50 CERRWARN +=     -_gcc=-Wno-parentheses
  51 CERRWARN +=     -_gcc=-Wno-unused-function
  52 
  53 ROOTCMDDIR =            $(ROOTLIB)
  54 ROOTMANIFESTDIR =       $(ROOTSVCSYSTEMFILESYSTEM)
  55 $(ROOTMANIFEST) :=      FILEMODE = 444
  56 $(ROOTLIBSVCMETHOD)/svc-rmvolmgr:= FILEMODE = 555
  57 
  58 .KEEP_STATE:
  59 
  60 all: $(PROG)
  61 
  62 $(PROG): $(OBJS)
  63         $(LINK.c) -o $(PROG) $(OBJS) $(LDLIBS)
  64         $(POST_PROCESS)
  65 
  66 install: all $(ROOTCMD) $(ROOTMANIFEST) $(ROOTSVCMETHOD)
  67 
  68 clean:
  69         $(RM) $(OBJS)
  70 
  71 check: $(CHKMANIFEST)
  72 
  73 $(POFILE): $(POFILES)
  74         $(RM) $@
  75         $(CAT) $(POFILES) > $@
  76 
  77 include ../Makefile.targ
  78