106e46062Sjbeloro#
206e46062Sjbeloro# CDDL HEADER START
306e46062Sjbeloro#
406e46062Sjbeloro# The contents of this file are subject to the terms of the
506e46062Sjbeloro# Common Development and Distribution License (the "License").
606e46062Sjbeloro# You may not use this file except in compliance with the License.
706e46062Sjbeloro#
806e46062Sjbeloro# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
906e46062Sjbeloro# or http://www.opensolaris.org/os/licensing.
1006e46062Sjbeloro# See the License for the specific language governing permissions
1106e46062Sjbeloro# and limitations under the License.
1206e46062Sjbeloro#
1306e46062Sjbeloro# When distributing Covered Code, include this CDDL HEADER in each
1406e46062Sjbeloro# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
1506e46062Sjbeloro# If applicable, add the following below this CDDL HEADER, with the
1606e46062Sjbeloro# fields enclosed by brackets "[]" replaced with your own identifying
1706e46062Sjbeloro# information: Portions Copyright [yyyy] [name of copyright owner]
1806e46062Sjbeloro#
1906e46062Sjbeloro# CDDL HEADER END
2006e46062Sjbeloro#
2106e46062Sjbeloro
2206e46062Sjbeloro#
23*24fe0b3bSjmcp# Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
2406e46062Sjbeloro# Use is subject to license terms.
2506e46062Sjbeloro#
2606e46062Sjbeloro
2706e46062Sjbeloro#
2806e46062Sjbeloro# cmd/picl/plugins/sun4u/seattle/frudr/Makefile
2906e46062Sjbeloro#
3006e46062Sjbeloro
3106e46062Sjbeloroinclude	$(SRC)/Makefile.psm
3206e46062Sjbeloro
3306e46062SjbeloroVERS =		.1
3406e46062Sjbeloro
3506e46062Sjbeloro# include library definitions
3606e46062Sjbeloroinclude $(SRC)/lib/Makefile.lib
3706e46062Sjbeloro
3806e46062SjbeloroROOT_PLATFORM = $(USR_PLAT_DIR)/SUNW,Sun-Fire-V215
3906e46062SjbeloroFRUDR_LINKTO_PLATFORM = SUNW,Sun-Fire-V240
4006e46062Sjbeloro
4106e46062Sjbeloroinclude	$(SRC)/cmd/picl/plugins/Makefile.com
4206e46062Sjbeloro
4306e46062SjbeloroROOTLIBDIR	= $(ROOT_PLAT_PLUGINDIR)
4406e46062Sjbeloro
4506e46062SjbeloroCONFS		= fru_PS0.conf fru_PS1.conf
4606e46062SjbeloroCONFS		+= fru_HDD0.conf fru_HDD1.conf
4706e46062SjbeloroCONFS		+= fru_HDD2.conf fru_HDD3.conf
4806e46062SjbeloroCONFS		+= fru_SC.conf
4906e46062SjbeloroCONFS		+= fru_usb-a-1.conf fru_usb-a-2.conf
5006e46062SjbeloroCONFS		+= fru_usb-a-3.conf fru_usb-a-4.conf
518326d453SvenkiCONFS		+= fru_FT0.conf fru_FT1.conf fru_FT2.conf
528326d453SvenkiCONFS		+= fru_FT3.conf fru_FT4.conf fru_FT5.conf
538326d453SvenkiCONFS		+= fru_FT6.conf
5406e46062SjbeloroROOTCONF=	$(CONFS:%=$(ROOTLIBDIR)/%)
5506e46062Sjbeloro$(ROOTCONF)	:= FILEMODE = 0644
5606e46062SjbeloroMAININFO=	$(CONFS:%.conf=%.info)
5706e46062SjbeloroOTHERINFOS	= fru_PS0_data.info fru_PS1_data.info
5806e46062SjbeloroOTHERINFOS	+= fru_HDD0_data.info fru_HDD1_data.info
5906e46062SjbeloroOTHERINFOS	+= fru_HDD2_data.info fru_HDD3_data.info
6006e46062SjbeloroOTHERINFOS	+= fru_SC_data.info SB-tables.info
6106e46062SjbeloroOTHERINFOS	+= fru_usb-a-1_data.info fru_usb-a-2_data.info
6206e46062SjbeloroOTHERINFOS	+= fru_usb-a-3_data.info fru_usb-a-4_data.info
638326d453SvenkiOTHERINFOS	+= fru_FT0_data.info fru_FT1_data.info fru_FT2_data.info
648326d453SvenkiOTHERINFOS	+= fru_FT3_data.info fru_FT4_data.info fru_FT5_data.info
658326d453SvenkiOTHERINFOS	+= fru_FT6_data.info
6606e46062Sjbeloro
6706e46062Sjbeloro.KEEP_STATE:
6806e46062Sjbeloro
6906e46062Sjbeloroall: $(CONFS)
7006e46062Sjbeloro
7106e46062Sjbeloroinstall:	all $(ROOTCONF); $(MAKE) $(FRUDR_LINK)
7206e46062Sjbeloro
7306e46062Sjbeloro$(CONFS): $(MAININFO) $(OTHERINFOS)
7406e46062Sjbeloro	@$(RM) -f $@
758326d453Svenki	@echo "# Copyright 2006 Sun Microsystems, Inc. " \
7606e46062Sjbeloro	"All rights reserved." > $@
7706e46062Sjbeloro	@echo "# Use is subject to license terms." >> $@
7806e46062Sjbeloro	@echo "# This is a generated file. #ident lines identify sources" >> $@
7906e46062Sjbeloro	$(CPP) -P $(@:%.conf=%.info) | \
8006e46062Sjbeloro	$(SED) -e '/^[  ]*$$/d' >> $@
8106e46062Sjbeloro	@$(CHMOD) 644 $@
8206e46062Sjbeloro
8306e46062Sjbeloro$(LIBLINKS):	FRC
8406e46062Sjbeloro	$(RM) $@; $(SYMLINK) $(DYNLIB) $@
8506e46062Sjbeloro
8606e46062Sjbeloro# include library targets
8706e46062Sjbeloroinclude $(SRC)/lib/Makefile.targ
8806e46062Sjbeloroinclude	$(SRC)/cmd/picl/plugins/Makefile.targ
8906e46062Sjbeloro
9006e46062Sjbelorolint:
9106e46062Sjbeloro
9206e46062SjbeloroFRC:
9306e46062Sjbeloro
9406e46062SjbeloroFRUDR_LINK=`cd $(ROOT_PLATFORM)/lib/picl/plugins/; \
9506e46062Sjbelororm -f libpiclfrudr.so.1; \
9606e46062Sjbelororm -f libpiclfrudr.so; \
9706e46062Sjbeloroln -s ../../../../$(FRUDR_LINKTO_PLATFORM)/lib/picl/plugins/libpiclfrudr.so.1 libpiclfrudr.so.1; \
9806e46062Sjbeloroln -s ../../../../$(FRUDR_LINKTO_PLATFORM)/lib/picl/plugins/libpiclfrudr.so libpiclfrudr.so;`
99