summaryrefslogtreecommitdiff
path: root/usr/src/make_src/Make/lib/mksh
diff options
context:
space:
mode:
Diffstat (limited to 'usr/src/make_src/Make/lib/mksh')
-rw-r--r--usr/src/make_src/Make/lib/mksh/Makefile29
-rw-r--r--usr/src/make_src/Make/lib/mksh/src/Makefile50
-rw-r--r--usr/src/make_src/Make/lib/mksh/src/Variant.mk58
-rw-r--r--usr/src/make_src/Make/lib/mksh/src/libmksh.msg81
4 files changed, 0 insertions, 218 deletions
diff --git a/usr/src/make_src/Make/lib/mksh/Makefile b/usr/src/make_src/Make/lib/mksh/Makefile
deleted file mode 100644
index fd663cd..0000000
--- a/usr/src/make_src/Make/lib/mksh/Makefile
+++ /dev/null
@@ -1,29 +0,0 @@
-#
-# 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 1996 Sun Microsystems, Inc. All rights reserved.
-# Use is subject to license terms.
-#
-# @(#)Makefile 1.5 06/12/12
-#
-
-TOP = ../../..
-include $(TOP)/rules/variant.mk
-include $(TOP)/rules/derived.mk
diff --git a/usr/src/make_src/Make/lib/mksh/src/Makefile b/usr/src/make_src/Make/lib/mksh/src/Makefile
deleted file mode 100644
index ebed78f..0000000
--- a/usr/src/make_src/Make/lib/mksh/src/Makefile
+++ /dev/null
@@ -1,50 +0,0 @@
-#
-# 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 1996 Sun Microsystems, Inc. All rights reserved.
-# Use is subject to license terms.
-#
-# @(#)Makefile 1.3 06/12/12
-#
-
-# Generic makefile for use in src directories. Knows how to make common things
-# in the right $(VARIANT) directory.
-
-#TOP = ../../../..
-include $(TOP)/rules/variant.mk
-
-all := TARG = all
-install := TARG = install
-clean := TARG = clean
-test := TARG = test
-l10n_install := TARG = l10n_install
-i18n_install := TARG = i18n_install
-
-SRC = ../src
-MFLAGS += SRC=$(SRC)
-
-# See $(TOP)/rules/master.mk for how these are built.
-%.h %.cc %.C %.E %.o all install clean test l10n_install i18n_install: FRC
- @ if [ ! -d ../$(VARIANT) ]; then \
- mkdir ../$(VARIANT) ; \
- fi
- cd ../$(VARIANT); $(MAKE) $(MFLAGS) -f $(SRC)/Variant.mk DESTDIR=$(DESTDIR) $@
-
-FRC:
diff --git a/usr/src/make_src/Make/lib/mksh/src/Variant.mk b/usr/src/make_src/Make/lib/mksh/src/Variant.mk
deleted file mode 100644
index 427ba54..0000000
--- a/usr/src/make_src/Make/lib/mksh/src/Variant.mk
+++ /dev/null
@@ -1,58 +0,0 @@
-#
-# 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 2002 Sun Microsystems, Inc. All rights reserved.
-# Use is subject to license terms.
-#
-# @(#)Variant.mk 1.19 06/12/12
-#
-
-TOP = ../../../..
-include $(TOP)/rules/master.mk
-include $(TOP)/rules/dmake.mk
-
-PKG_TOP = $(TOP)/Make
-CPPFLAGS += -I$(PKG_TOP)/include
-
-CCSRCS = \
- dosys.cc \
- globals.cc \
- i18n.cc \
- macro.cc \
- misc.cc \
- mksh.cc \
- read.cc
-
-HDRS_DIR = $(PKG_TOP)/include/mksh
-HDRS_LIST = $(HDRS_DIR)/defs.h \
- $(CCSRCS:%.cc=$(HDRS_DIR)/%.h) \
- $(CSRCS:%.c=$(HDRS_DIR)/%.h)
-
-.INIT: $(HDRS_LIST)
-
-LIBNAME = libmksh.a
-MSG_FILE = libmksh.msg
-I18N_DIRS = $(SRC)
-
-#CPPFLAGS += -DTEAMWARE_MAKE_CMN -DDISTRIBUTED
-
-include $(TOP)/Make/lib/Lib.mk
-include $(TOP)/rules/lib.mk
-
diff --git a/usr/src/make_src/Make/lib/mksh/src/libmksh.msg b/usr/src/make_src/Make/lib/mksh/src/libmksh.msg
deleted file mode 100644
index d1994aa..0000000
--- a/usr/src/make_src/Make/lib/mksh/src/libmksh.msg
+++ /dev/null
@@ -1,81 +0,0 @@
-
-$quote "
-
-
-$set 1
-$
-$ 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 1996 Sun Microsystems, Inc. All rights reserved.
-$ Use is subject to license terms.
-$
-$ @(#)libmksh.msg 1.2 06/12/12
-$
-89 "ulimit() failed: %s"
-90 "Couldn't open standard out temp file `%s': %s"
-91 "Couldn't open standard error temp file `%s': %s"
-92 "Could not load `/usr/bin/nice': %s"
-93 "Could not load Shell from `%s': %s"
-94 "fork failed: %s"
-95 "Command `%s' has more than %d arguments"
-96 "Cannot load command `%s': %s"
-97 "fork failed: %s"
-98 "wait() failed: %s"
-99 "Could not open filter file for -X"
-100 "Could not stat filter file for -X"
-101 "\n**** Error: Directory %s Target %s:\n%s\n"
-102 "**** Error: Directory %s Target %s\n"
-103 "*** Error code %d"
-104 "*** Error code %d"
-105 "*** Signal %d"
-106 "*** Signal %d"
-107 " - core dumped"
-108 " - core dumped"
-109 " (ignored)"
-110 " (ignored)"
-111 "Could not run command `%s' for :sh transformation"
-112 "The command `%s' returned status `%d'"
-113 "Loop detected when expanding macro value `%s'"
-114 "'$' at end of string `%s'"
-115 "'$' at end of line"
-116 "Unmatched `%c' in string `%s'"
-117 "Premature EOF"
-118 "Unmatched `%c' on line"
-119 "Illegal macro reference `%s'"
-120 "= missing from replacement macro reference"
-121 "= missing from replacement macro reference"
-122 "%% missing from replacement macro reference"
-123 "%% missing from replacement macro reference"
-124 "Too many %% in pattern"
-125 "Conditional macro `%s' referenced on line %d"
-126 "Out of memory"
-127 "Error %d"
-128 "mksh: Fatal error: "
-129 "Current working directory %s\n"
-131 "mksh: Fatal error in reader: "
-133 "Current working directory %s\n"
-134 "mksh: Warning: "
-135 "Current working directory %s\n"
-136 "Internal error. Unknown prop type %d"
-137 "`cd %s' failed, and conversion of %s to automounter pathname also failed"
-138 "`cd %s' and `cd %s' both failed"
-139 "The following command caused the error:\n%s\n"
-140 "Error reading `%s': Premature EOF"
-141 "Error reading `%s': %s"