xref: /illumos-gate/usr/src/lib/libprtdiag_psr/sparc/lw8/picl/Makefile (revision 004388ebfdfe2ed7dfd2d153a876dfcc22d2c006)
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#
23# Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
24# Use is subject to license terms.
25#
26# ident	"%Z%%M%	%I%	%E% SMI"
27#
28# lib/libprtdiag_psr/sparc/desktop/picl/Makefile
29
30UTSBASE = $(SRC)/uts
31
32PLATFORM_OBJECTS= lw8.o
33
34objs/%.o pics/%.o: ../common/%.c
35	$(COMPILE.c) $(IFLAGS) -o $@ $<
36	$(POST_PROCESS_O)
37
38include $(SRC)/lib/libprtdiag_psr/sparc/Makefile.com
39
40SRCS=	$(OBJECTS:%.o=../common/%.c)
41
42LDLIBS += -lpicl
43
44IFLAGS += -I$(USR_PLAT_DIR)/sun4u/include -I ../../../../libprtdiag/inc
45IFLAGS += -I$(SRC)/cmd/picl/plugins/inc
46LINTFLAGS += $(IFLAGS)
47
48PLATFORM=	SUNW,Netra-T12
49
50.KEEP_STATE:
51
52PLATLIBS=	$(PLATFORM:%=$(USR_PLAT_DIR)/%/lib/)
53
54install:	all $(PLATLIBS) $(USR_PSM_LIBS)
55
56#
57# install rules for SUNW,Sun-Blade-100/lib/libprtdiag_psr.so.1
58#
59$(PLATLIBS):
60	$(INS.dir)
61
62$(USR_PSM_LIB_DIR)/%: % $(USR_PSM_LIB_DIR)
63	$(INS.file)
64
65$(USR_PSM_LIB_DIR):
66	$(INS.dir)
67
68#
69# Rules for making message files
70#
71POFILE=		libprtdiag_psr_lw8_picl.po
72POFILES=	lw8.po
73
74_msg:	$(MSGDOMAIN) $(POFILE)
75	$(RM) $(MSGDOMAIN)/$(POFILE)
76	$(CP) $(POFILE) $(MSGDOMAIN)
77
78$(POFILE):	$(POFILES)
79	$(RM) $@
80	$(CAT) $(POFILES) > $@
81
82$(POFILES):
83	$(RM) messages.po
84	$(XGETTEXT) $(XGETFLAGS) `$(GREP) -l gettext ../common/lw8.c`
85	$(SED) -e '/^# msg/d' -e '/^domain/d' messages.po > $@
86	$(RM) messages.po
87
88