xref: /onnv-gate/usr/src/lib/libfru/libfrureg/Makefile.com (revision 7684:cdccab274861)
10Sstevel@tonic-gate#
20Sstevel@tonic-gate# CDDL HEADER START
30Sstevel@tonic-gate#
40Sstevel@tonic-gate# The contents of this file are subject to the terms of the
52522Sraf# Common Development and Distribution License (the "License").
62522Sraf# You may not use this file except in compliance with the License.
70Sstevel@tonic-gate#
80Sstevel@tonic-gate# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
90Sstevel@tonic-gate# or http://www.opensolaris.org/os/licensing.
100Sstevel@tonic-gate# See the License for the specific language governing permissions
110Sstevel@tonic-gate# and limitations under the License.
120Sstevel@tonic-gate#
130Sstevel@tonic-gate# When distributing Covered Code, include this CDDL HEADER in each
140Sstevel@tonic-gate# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
150Sstevel@tonic-gate# If applicable, add the following below this CDDL HEADER, with the
160Sstevel@tonic-gate# fields enclosed by brackets "[]" replaced with your own identifying
170Sstevel@tonic-gate# information: Portions Copyright [yyyy] [name of copyright owner]
180Sstevel@tonic-gate#
190Sstevel@tonic-gate# CDDL HEADER END
200Sstevel@tonic-gate#
210Sstevel@tonic-gate#
22*7684SNick.Todd@Sun.COM# Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
230Sstevel@tonic-gate# Use is subject to license terms.
240Sstevel@tonic-gate#
250Sstevel@tonic-gate
260Sstevel@tonic-gateLIBRARY=	libfrureg.a
270Sstevel@tonic-gateVERS=		.1
280Sstevel@tonic-gate
290Sstevel@tonic-gateOBJECTS=	frureg.o
300Sstevel@tonic-gate
310Sstevel@tonic-gate# include library definitions
320Sstevel@tonic-gateinclude $(SRC)/lib/Makefile.lib
330Sstevel@tonic-gate
340Sstevel@tonic-gateCLOBBERFILES += $(LIBLINKS)
350Sstevel@tonic-gate
360Sstevel@tonic-gateLIBS =		$(DYNLIB)
370Sstevel@tonic-gate
382522Sraf# There should be a mapfile here
392522SrafMAPFILES =
402522Sraf
410Sstevel@tonic-gateLINTFLAGS =	-uxn
42*7684SNick.Todd@Sun.COMLINTFLAGS64 =	$(LINTFLAGS) -m64
430Sstevel@tonic-gateLINTOUT=	lint.out
440Sstevel@tonic-gateLINTSRC =       $(LINTLIB:%.ln=%)
450Sstevel@tonic-gateROOTLINTDIR =   $(ROOTLIBDIR)
460Sstevel@tonic-gateROOTLINT =      $(LINTSRC:%=$(ROOTLINTDIR)/%)
470Sstevel@tonic-gate
480Sstevel@tonic-gateCLEANFILES=	$(LINTOUT)
490Sstevel@tonic-gate
500Sstevel@tonic-gateCPPFLAGS +=	-I.. \
510Sstevel@tonic-gate		-I$(SRC)/lib/libfru/include \
520Sstevel@tonic-gate		-I$(SRC)/cmd/picl/plugins/sun4u/frudata \
530Sstevel@tonic-gate		-I$(SRC)/lib/libpicl \
540Sstevel@tonic-gate		-I$(SRC)/lib/libfruutils \
550Sstevel@tonic-gate		-I$(SRC)/cmd/picl/plugins/inc
560Sstevel@tonic-gateCPPFLAGS += 	-D_REENTRANT
570Sstevel@tonic-gateCFLAGS +=	$(CCVERBOSE)
580Sstevel@tonic-gate
590Sstevel@tonic-gate$(LINTLIB) :=	LINTFLAGS = -nvx -I..
60*7684SNick.Todd@Sun.COM$(LINTLIB) :=	LINTFLAGS64 = -nvx -m64 -I..
610Sstevel@tonic-gate
620Sstevel@tonic-gateXGETFLAGS += -a
630Sstevel@tonic-gatePOFILE=	picl.po
640Sstevel@tonic-gate
650Sstevel@tonic-gate.KEEP_STATE:
660Sstevel@tonic-gate
670Sstevel@tonic-gateall : $(LIBS)
680Sstevel@tonic-gate	chmod 755 $(DYNLIB)
690Sstevel@tonic-gate
700Sstevel@tonic-gatelint :	lintcheck
710Sstevel@tonic-gate
720Sstevel@tonic-gate%.po:	../%.c
730Sstevel@tonic-gate	$(CP) $< $<.i
740Sstevel@tonic-gate	$(BUILD.po)
750Sstevel@tonic-gate
760Sstevel@tonic-gate_msg:	$(MSGDOMAIN) $(POFILE)
770Sstevel@tonic-gate	$(RM) $(MSGDOMAIN)/$(POFILE)
780Sstevel@tonic-gate	$(CP) $(POFILE) $(MSGDOMAIN)
790Sstevel@tonic-gate
800Sstevel@tonic-gate# include library targets
810Sstevel@tonic-gateinclude $(SRC)/lib/Makefile.targ
820Sstevel@tonic-gate
830Sstevel@tonic-gatepics/%.o:	../%.c
840Sstevel@tonic-gate	$(COMPILE.c) -o $@ $<
850Sstevel@tonic-gate	$(POST_PROCESS_O)
860Sstevel@tonic-gate
870Sstevel@tonic-gate$(ROOTLINTDIR)/%: ../%
880Sstevel@tonic-gate	$(INS.file)
89