5403N/A#
5403N/A# CDDL HEADER START
5403N/A#
5403N/A# The contents of this file are subject to the terms of the
5403N/A# Common Development and Distribution License, Version 1.0 only
5403N/A# (the "License"). You may not use this file except in compliance
5403N/A# with the License.
5403N/A#
5403N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
5403N/A# or http://www.opensolaris.org/os/licensing.
5403N/A# See the License for the specific language governing permissions
5403N/A# and limitations under the License.
5403N/A#
5403N/A# When distributing Covered Code, include this CDDL HEADER in each
5403N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
5403N/A# If applicable, add the following below this CDDL HEADER, with the
5403N/A# fields enclosed by brackets "[]" replaced with your own identifying
5403N/A# information: Portions Copyright [yyyy] [name of copyright owner]
5403N/A#
5403N/A# CDDL HEADER END
5403N/A#
5403N/A#
5403N/A# Copyright 2005 Sun Microsystems, Inc. All rights reserved.
5403N/A# Use is subject to license terms.
5403N/A#
5403N/A# cmd/awk_xpg4/Makefile
5403N/A#
5403N/A
5403N/A# NOTE: this is nawk in usr/src/cmd/awk_xpg4 to reside as /usr/xpg4/bin/awk
5403N/A
5403N/APROG= awk
5403N/AXPG4PROG= awk
5403N/A
5403N/AOBJ1= awk0.o awk1.o awk2.o awk3.o awk4.o
5403N/AOBJ2= awk.o
5403N/AXPG4AWKOBJ= values-xpg4.o
5403N/AOBJS= $(OBJ2) $(OBJ1) $(XPG4AWKOBJ)
5403N/ASRCS= $(OBJ1:%.o=%.c)
5403N/A
5403N/Ainclude ../Makefile.cmd
5403N/A
5403N/ACPPFLAGS += -D_FILE_OFFSET_BITS=64
5403N/ACFLAGS += $(CCVERBOSE)
5403N/ACERRWARN += -_gcc=-Wno-unused-label
5403N/ACERRWARN += -_gcc=-Wno-parentheses
5403N/ACERRWARN += -_gcc=-Wno-uninitialized
5403N/AYFLAGS += -d
5403N/ALDLIBS += -lm
5403N/ACLEANFILES= awk.c y.tab.h
5403N/A
5403N/A# for messaging catalog
5403N/A
5403N/APOFILE= awk_xpg4.po
5403N/APOFILES= $(OBJ1:%.o=%.po) $(OBJ2:%.o=%.po)
5403N/A
5403N/A.KEEP_STATE:
5403N/A
5403N/A.PARALLEL: $(OBJS)
5403N/A
5403N/Aall: $(XPG4)
5403N/A
5403N/A$(XPG4): $(OBJS)
5403N/A $(LINK.c) $(OBJS) -o $@ $(LDLIBS)
5403N/A $(POST_PROCESS)
5403N/A
5403N/A$(POFILE): $(POFILES)
5403N/A $(RM) $@
5403N/A cat $(POFILES) > $@
5403N/A#
5403N/A
5403N/Ainstall: all $(ROOTXPG4PROG)
5403N/A
5403N/Avalues-xpg4.o: ../../lib/common/common/values-xpg4.c
5403N/A $(COMPILE.c) -o $@ ../../lib/common/common/values-xpg4.c
5403N/A
5403N/Aclean:
5403N/A $(RM) $(OBJS) $(XPG4) $(CLEANFILES)
5403N/A
5403N/Alint: lint_SRCS
5403N/A
5403N/Aawk.c + y.tab.h: awk.y
5403N/A
5403N/Aawk.o: awk.c y.tab.h
5403N/A
5403N/Aawk0.c: awk.c y.tab.h
5403N/A
5403N/Aawk1.c: awk.c y.tab.h
5403N/A
5403N/Aawk2.c: awk.c y.tab.h
5403N/A
5403N/Aawk3.c: awk.c y.tab.h
5403N/A
5403N/Aawk4.c: awk.c y.tab.h
5403N/A
5403N/Ainclude ../Makefile.targ
5403N/A