Makefile revision 711890bc9379ceea66272dc8d4981812224ea86e
13588d95d6459633b746c603dbadd0e58fdc741dRobert Wapshott#
13588d95d6459633b746c603dbadd0e58fdc741dRobert Wapshott# CDDL HEADER START
13588d95d6459633b746c603dbadd0e58fdc741dRobert Wapshott#
13588d95d6459633b746c603dbadd0e58fdc741dRobert Wapshott# The contents of this file are subject to the terms of the
13588d95d6459633b746c603dbadd0e58fdc741dRobert Wapshott# Common Development and Distribution License (the "License").
13588d95d6459633b746c603dbadd0e58fdc741dRobert Wapshott# You may not use this file except in compliance with the License.
13588d95d6459633b746c603dbadd0e58fdc741dRobert Wapshott#
13588d95d6459633b746c603dbadd0e58fdc741dRobert Wapshott# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
13588d95d6459633b746c603dbadd0e58fdc741dRobert Wapshott# or http://www.opensolaris.org/os/licensing.
13588d95d6459633b746c603dbadd0e58fdc741dRobert Wapshott# See the License for the specific language governing permissions
13588d95d6459633b746c603dbadd0e58fdc741dRobert Wapshott# and limitations under the License.
13588d95d6459633b746c603dbadd0e58fdc741dRobert Wapshott#
13588d95d6459633b746c603dbadd0e58fdc741dRobert Wapshott# When distributing Covered Code, include this CDDL HEADER in each
767ea2115706861fc5138515da6869735655f855Peter Major# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
13588d95d6459633b746c603dbadd0e58fdc741dRobert Wapshott# If applicable, add the following below this CDDL HEADER, with the
13588d95d6459633b746c603dbadd0e58fdc741dRobert Wapshott# fields enclosed by brackets "[]" replaced with your own identifying
13588d95d6459633b746c603dbadd0e58fdc741dRobert Wapshott# information: Portions Copyright [yyyy] [name of copyright owner]
a093731116a8c24d49b903df7602cf586e499b45Phill Cunnington#
a093731116a8c24d49b903df7602cf586e499b45Phill Cunnington# CDDL HEADER END
a093731116a8c24d49b903df7602cf586e499b45Phill Cunnington#
c9f1d3043c1f8394a35ebfd5aad3bdeb841e55dfPhill Cunnington
c9f1d3043c1f8394a35ebfd5aad3bdeb841e55dfPhill Cunnington#
c9f1d3043c1f8394a35ebfd5aad3bdeb841e55dfPhill Cunnington# Copyright 2007 Sun Microsystems, Inc. All rights reserved.
c9f1d3043c1f8394a35ebfd5aad3bdeb841e55dfPhill Cunnington# Use is subject to license terms.
13588d95d6459633b746c603dbadd0e58fdc741dRobert Wapshott#
3718b64edcbcad3874cae9b01e00e1b64586f11bJames Phillpotts#pragma ident "%Z%%M% %I% %E% SMI"
13588d95d6459633b746c603dbadd0e58fdc741dRobert Wapshott#
13588d95d6459633b746c603dbadd0e58fdc741dRobert Wapshott# lib/libraidcfg/Makefile
13588d95d6459633b746c603dbadd0e58fdc741dRobert Wapshott#
13588d95d6459633b746c603dbadd0e58fdc741dRobert Wapshott
13588d95d6459633b746c603dbadd0e58fdc741dRobert Wapshottinclude $(SRC)/lib/Makefile.lib
13588d95d6459633b746c603dbadd0e58fdc741dRobert Wapshott
13588d95d6459633b746c603dbadd0e58fdc741dRobert WapshottSUBDIRS = $(MACH)
13588d95d6459633b746c603dbadd0e58fdc741dRobert Wapshott$(BUILD64)SUBDIRS += $(MACH64)
13588d95d6459633b746c603dbadd0e58fdc741dRobert Wapshott
13588d95d6459633b746c603dbadd0e58fdc741dRobert WapshottPOFILE = libraidcfg.po
13588d95d6459633b746c603dbadd0e58fdc741dRobert WapshottMSGSRCS :sh = echo */*.c
13588d95d6459633b746c603dbadd0e58fdc741dRobert WapshottMSGFILES = $(MSGSRCS:%.c=%.i)
13588d95d6459633b746c603dbadd0e58fdc741dRobert Wapshott
13588d95d6459633b746c603dbadd0e58fdc741dRobert Wapshottall := TARGET= all
13588d95d6459633b746c603dbadd0e58fdc741dRobert Wapshottclean := TARGET= clean
13588d95d6459633b746c603dbadd0e58fdc741dRobert Wapshottclobber := TARGET= clobber
3718b64edcbcad3874cae9b01e00e1b64586f11bJames Phillpottsinstall := TARGET= install
13588d95d6459633b746c603dbadd0e58fdc741dRobert Wapshottlint := TARGET= lint
13588d95d6459633b746c603dbadd0e58fdc741dRobert Wapshott
13588d95d6459633b746c603dbadd0e58fdc741dRobert Wapshott.KEEP_STATE:
13588d95d6459633b746c603dbadd0e58fdc741dRobert Wapshott
13588d95d6459633b746c603dbadd0e58fdc741dRobert Wapshottall clean clobber install lint: $(SUBDIRS)
a093731116a8c24d49b903df7602cf586e499b45Phill Cunnington
13588d95d6459633b746c603dbadd0e58fdc741dRobert Wapshott$(SUBDIRS): FRC
13588d95d6459633b746c603dbadd0e58fdc741dRobert Wapshott @cd $@; pwd; $(MAKE) $(TARGET)
13588d95d6459633b746c603dbadd0e58fdc741dRobert Wapshott
13588d95d6459633b746c603dbadd0e58fdc741dRobert Wapshott_msg: $(MSGDOMAINPOFILE)
a093731116a8c24d49b903df7602cf586e499b45Phill Cunnington
3718b64edcbcad3874cae9b01e00e1b64586f11bJames Phillpotts$(POFILE): $(MSGFILES)
a093731116a8c24d49b903df7602cf586e499b45Phill Cunnington $(BUILDPO.msgfiles)
13588d95d6459633b746c603dbadd0e58fdc741dRobert Wapshott
a093731116a8c24d49b903df7602cf586e499b45Phill CunningtonFRC:
13588d95d6459633b746c603dbadd0e58fdc741dRobert Wapshott
a093731116a8c24d49b903df7602cf586e499b45Phill Cunningtoninclude $(SRC)/Makefile.msg.targ
13588d95d6459633b746c603dbadd0e58fdc741dRobert Wapshottinclude $(SRC)/lib/Makefile.targ
13588d95d6459633b746c603dbadd0e58fdc741dRobert Wapshott