cmd: remove sparc-only virtinfo
[unleashed.git] / usr / src / cmd / picl / plugins / sun4u / lib / fruaccess / Makefile
bloba092b72841839c082b3a46402b236f357003332d
2 # CDDL HEADER START
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.
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.
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]
19 # CDDL HEADER END
22 # Copyright 2009 Sun Microsystems, Inc. All rights reserved.
23 # Use is subject to license terms.
25 # cmd/picl/plugins/sun4u/lib/fruaccess/Makefile
27 LIBRARY= libfruaccess.a
28 VERS= .1
29 OBJECTS= fru_access.o cvrt_spd_data.o crcutils.o crcmodel.o
31 # include library definitions
32 include $(SRC)/Makefile.psm
33 include $(SRC)/lib/Makefile.lib
35 ROOT_PLATFORM = $(USR_PLAT_DIR)/sun4u
37 include $(SRC)/cmd/picl/plugins/Makefile.com
39 SRCS= $(OBJECTS:%.o=%.c)
41 LIBS= $(DYNLIB)
43 ROOTLIBDIR = $(ROOT_PLATFORM)/lib
45 CONF = fru_container.conf
46 ROOTCONF= $(CONF:%=$(ROOTLIBDIR)/%)
47 $(ROOTCONF) := FILEMODE = 0644
50 CLOBBERFILES += $(LIBLINKS)
51 CSTYLE = cstyle -p -P
52 HDRCHK = hdrchk
55 CPPFLAGS += -I$(SRC)/lib/libfru/include
56 CPPFLAGS += -I$(SRC)/lib/libfruutils/
57 CFLAGS += -DBIG_ENDIAN
58 LDLIBS += -L$(SRC)/lib/libfruutils/$(MACH)
59 LDLIBS += -lc -lpicltree -lfruutils
60 LDLIBS += -ldevinfo
61 LDLIBS += -Wl,-f/opt/SUNWSMS/lib/$(DYNLIBPSR) # SMS before platform
62 LDLIBS += -Wl,-f/usr/platform/\$$PLATFORM/lib/$(DYNLIBPSR)
64 .KEEP_STATE:
67 SUBDIRS=
69 all := TARGET= all
70 install := TARGET= install
71 clean := TARGET= clean
72 clobber := TARGET= clobber
73 _msg := TARGET= _msg
75 LN = ln -s
77 POFILE= $(LIBRARY:.a=.po)
79 all: $(DYNLIB) $(LIBLINKS) $(CONF)
81 install: $(ROOTLIBDIR) all $(ROOTLIBS) $(ROOTLINKS) $(ROOTCONF)
83 _msg: $(MSGDOMAIN) $(POFILE)
84 $(RM) $(MSGDOMAIN)/$(POFILE)
85 $(CP) $(POFILE) $(MSGDOMAIN)
87 $(POFILE):
88 $(RM) $@ messages.po
89 $(XGETTEXT) $(XGETFLAGS) *.[ch]* */*.[ch]*
90 $(SED) -e '/^# msg/d' -e '/^domain/d' messages.po > $@
91 $(RM) messages.po
93 $(MSGDOMAIN):
94 $(INS.dir)
96 $(LIBLINKS): FRC
97 $(RM) $@; $(SYMLINK) $(DYNLIB) $@
99 check-style:
100 $(CSTYLE) *.cc *.c *.h
101 $(HDRCHK) *.h
103 # include library targets
104 include $(SRC)/cmd/picl/plugins/Makefile.targ
105 include $(SRC)/lib/Makefile.targ
107 $(SUBDIRS): FRC
108 @cd $@; pwd; $(MAKE) $(TARGET)
110 FRC: