Makefile.astmsg revision da2e3ebdc1edfbc5028edf1354e7dd2fa69a7968
#
# CDDL HEADER START
#
# The contents of this file are subject to the terms of the
# Common Development and Distribution License (the "License").
# You may not use this file except in compliance with the License.
#
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
# or http://www.opensolaris.org/os/licensing.
# See the License for the specific language governing permissions
# and limitations under the License.
#
# When distributing Covered Code, include this CDDL HEADER in each
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
# If applicable, add the following below this CDDL HEADER, with the
# fields enclosed by brackets "[]" replaced with your own identifying
# information: Portions Copyright [yyyy] [name of copyright owner]
#
# CDDL HEADER END
#
#
# Copyright 2007 Sun Microsystems, Inc. All rights reserved.
# Use is subject to license terms.
#
# ident "%Z%%M% %I% %E% SMI"
#
#
# Temporarily control building AST l10n catalogs until all build
# machines have been updated.
#
# Should we build AST l10n catalogs ?
# This can be overridden at build time via:
# $ export ON_BUILD_KSH93_AS_BINKSH=1
ON_BUILD_AST_L10N_CATALOGS=0
DO_BUILD_AST_CATALOGS_1= $(ON_BUILD_AST_L10N_CATALOGS:0=$(POUND_SIGN))
DONT_BUILD_AST_CATALOGS_1= $(ON_BUILD_AST_L10N_CATALOGS:1=$(POUND_SIGN))
DO_BUILD_AST_CATALOGS= $(DO_BUILD_AST_CATALOGS_1:1=)
DONT_BUILD_AST_CATALOGS= $(DONT_BUILD_AST_CATALOGS_1:0=)
#
# l10n message catalog generation for AST libraries
#
MSGLIBNAME= $(LIBRARY:.a=)
ASTMSGCATALOG= $(ROOT)/usr/lib/locale/C/LC_MESSAGES/$(MSGLIBNAME)
# We can't support LD_LIBRARY_PATH/ROOT hacks that attempt to run software
# out of the proto area.
$(DO_BUILD_AST_CATALOGS)ASTMSGCC= \
PATH="$(ROOT)/usr/ast/bin/:/bin:/usr/bin" \
LD_LIBRARY_PATH="$(ROOT)/usr/lib/$(MACH64):$(ROOT)/usr/lib/" \
"$(ROOT)/bin/ksh93" "$(ROOT)/usr/ast/bin/msgcc" >>msgcc.out 2>&1
ASTMSGS= $(OBJECTS:%.o=msgs/%.mso)
# cpp defines needed by msgcc
i386_ASTMSGCCFLAGS= -D__i386
amd64_ASTMSGCCFLAGS= -D__amd64
sparc_ASTMSGCCFLAGS= -D__sparc
sparcv9_ASTMSGCCFLAGS= -D__sparcv9
ASTMSGCCFLAGS= -D_STDC_C99 -D__STDC__ -D__BUILTIN_VA_ARG_INCR $($(TARGETMACH)_ASTMSGCCFLAGS)
msgs/%.mso: ../common/%.c
@mkdir -p "$$(dirname "$@")" ; \
print "# Processing file $< to $@" >>msgcc.out ; \
$(ASTMSGCC) -M-set=ast $(ASTMSGCCFLAGS) $(CFLAGS) $(CPPFLAGS) -c "$<" -o "$@"
msgs/%.mso: ../%.c
@mkdir -p "$$(dirname "$@")" ; \
print "# Processing file $< to $@" >>msgcc.out ; \
$(ASTMSGCC) -M-set=ast $(ASTMSGCCFLAGS) $(CFLAGS) $(CPPFLAGS) -c "$<" -o "$@"
$(MSGLIBNAME).msg: $(ASTMSGS)
@print "# Processing files $(ASTMSGS) to $@" >>msgcc.out ; \
$(ASTMSGCC) -M-set=ast $(ASTMSGCCFLAGS) $(CFLAGS) $(CPPFLAGS) -o $@ $(ASTMSGS)
$(ASTMSGCATALOG): $(MSGLIBNAME).msg
@$(RM) "$(ASTMSGCATALOG)" ; \
sed 's/^$$translation msgcc .*//' <"$(MSGLIBNAME).msg" | gencat "$@" -
# Main catalog target
$(DO_BUILD_AST_CATALOGS)_msg: $(ASTMSGCATALOG)
# Create empty catalog file when we do not build it (to avoid that we have to hack the
# package database each time we toggle the switch)
$(DONT_BUILD_AST_CATALOGS)_msg:
$(DONT_BUILD_AST_CATALOGS) $(RM) $(ASTMSGCATALOG) ; \
$(TOUCH) $(ASTMSGCATALOG)
# Add message catalogs to the list of files to "clobber"
CLOBBERFILES += \
$(ASTMSGS) \
$(ASTMSGCATALOG) \
$(MSGLIBNAME).msg \
msgcc.out