xref: /titanic_51/usr/src/cmd/ast/msgcc/Makefile (revision 7c2fbfb345896881c631598ee3852ce9ce33fb07)
1da2e3ebdSchin#
2da2e3ebdSchin# CDDL HEADER START
3da2e3ebdSchin#
4da2e3ebdSchin# The contents of this file are subject to the terms of the
5da2e3ebdSchin# Common Development and Distribution License (the "License").
6da2e3ebdSchin# You may not use this file except in compliance with the License.
7da2e3ebdSchin#
8da2e3ebdSchin# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9da2e3ebdSchin# or http://www.opensolaris.org/os/licensing.
10da2e3ebdSchin# See the License for the specific language governing permissions
11da2e3ebdSchin# and limitations under the License.
12da2e3ebdSchin#
13da2e3ebdSchin# When distributing Covered Code, include this CDDL HEADER in each
14da2e3ebdSchin# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15da2e3ebdSchin# If applicable, add the following below this CDDL HEADER, with the
16da2e3ebdSchin# fields enclosed by brackets "[]" replaced with your own identifying
17da2e3ebdSchin# information: Portions Copyright [yyyy] [name of copyright owner]
18da2e3ebdSchin#
19da2e3ebdSchin# CDDL HEADER END
20da2e3ebdSchin#
21da2e3ebdSchin#
22*7c2fbfb3SApril Chin# Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
23da2e3ebdSchin# Use is subject to license terms.
24da2e3ebdSchin#
25da2e3ebdSchin
26*7c2fbfb3SApril ChinSHELL=/usr/bin/ksh93
27da2e3ebdSchin
28da2e3ebdSchininclude ../../Makefile.cmd
29da2e3ebdSchin
30da2e3ebdSchin.KEEP_STATE:
31da2e3ebdSchin
32da2e3ebdSchin# Set common AST build flags (e.g., needed to support the math stuff).
33da2e3ebdSchininclude ../../../Makefile.ast
34da2e3ebdSchin
35da2e3ebdSchin# build rules
36da2e3ebdSchinCPPFLAGS = \
37da2e3ebdSchin        $(DTEXTDOM) $(DTS_ERRNO) \
38da2e3ebdSchin        -I$(ROOT)/usr/include/ast \
39da2e3ebdSchin	-D_PACKAGE_ast \
40da2e3ebdSchin	'-DUSAGE_LICENSE=\
41da2e3ebdSchin		"[-author?Glenn Fowler <gsf@research.att.com>]"\
42*7c2fbfb3SApril Chin		"[-copyright?Copyright (c) 1986-2008 AT&T Intellectual Property]"\
43da2e3ebdSchin		"[-license?http://www.opensource.org/licenses/cpl1.0.txt]"\
44da2e3ebdSchin		"[--catalog?msgcc]"'
45da2e3ebdSchin
46da2e3ebdSchinCFLAGS += \
47*7c2fbfb3SApril Chin	$(ASTCFLAGS)
48da2e3ebdSchin
49da2e3ebdSchinLDLIBS += -last
50da2e3ebdSchinmsgcpp   := LDLIBS += -lpp
51da2e3ebdSchin
52*7c2fbfb3SApril Chin# This target should use "shcomp" in the future
53da2e3ebdSchinmsgcc:	msgcc.sh
54da2e3ebdSchin	rm -f msgcc ; \
55*7c2fbfb3SApril Chin	{ \
56da2e3ebdSchin		print "#!/usr/bin/ksh93" ; \
57da2e3ebdSchin		print "export PATH=/usr/ast/bin:/usr/xpg6/bin:/usr/xpg4/bin:/usr/bin:\$${PATH}" ; \
58da2e3ebdSchin		print "builtin date" ; \
59da2e3ebdSchin		cat "msgcc.sh" ; \
60*7c2fbfb3SApril Chin	} >msgcc ; \
61da2e3ebdSchin	chmod a+rx msgcc
62da2e3ebdSchin
63da2e3ebdSchinROOTCMDDIR=$(ROOT)/usr/ast/bin
64da2e3ebdSchin
65da2e3ebdSchinPROG= msgcvt msggen msgget msgcpp msgcc
66da2e3ebdSchin
67da2e3ebdSchinall: $(PROG)
68da2e3ebdSchin
69da2e3ebdSchininstall: all $(ROOTCMD)
70da2e3ebdSchin
71da2e3ebdSchinclean lint:
72da2e3ebdSchin
73da2e3ebdSchininclude ../../Makefile.targ
74