Release awk-2022-08-22.com

This commit is contained in:
Justine Tunney 2022-08-22 21:28:19 -07:00
parent 5a632cf72d
commit 8cab92a069
3 changed files with 28 additions and 1 deletions

View file

@ -1,4 +1,3 @@
AWK(1) General Commands Manual AWK(1)

View file

@ -52,10 +52,15 @@ $(THIRD_PARTY_AWK_A).pkg: \
o/$(MODE)/third_party/awk/awk.com.dbg: \
$(THIRD_PARTY_AWK) \
o/$(MODE)/third_party/awk/main.o \
o/$(MODE)/third_party/awk/README.zip.o \
$(CRT) \
$(APE_NO_MODIFY_SELF)
@$(APELINK)
o/$(MODE)/third_party/awk/README.zip.o: \
ZIPOBJ_FLAGS = \
-B
THIRD_PARTY_AWK_LIBS = $(foreach x,$(THIRD_PARTY_AWK_ARTIFACTS),$($(x)))
THIRD_PARTY_AWK_SRCS = $(foreach x,$(THIRD_PARTY_AWK_ARTIFACTS),$($(x)_SRCS))
THIRD_PARTY_AWK_CHECKS = $(foreach x,$(THIRD_PARTY_AWK_ARTIFACTS),$($(x)_CHECKS))

View file

@ -42,6 +42,29 @@
#include "tool/args/args.h"
// clang-format off
asm(".ident\t\"\\n\\n\
Copyright (C) Lucent Technologies 1997\\n\
All Rights Reserved\\n\
\\n\
Permission to use, copy, modify, and distribute this software and\\n\
its documentation for any purpose and without fee is hereby\\n\
granted, provided that the above copyright notice appear in all\\n\
copies and that both that the copyright notice and this\\n\
permission notice and warranty disclaimer appear in supporting\\n\
documentation, and that the name Lucent Technologies or any of\\n\
its entities not be used in advertising or publicity pertaining\\n\
to distribution of the software without specific, written prior\\n\
permission.\\n\
\\n\
LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,\\n\
INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.\\n\
IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY\\n\
SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\\n\
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER\\n\
IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,\\n\
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF\\n\
THIS SOFTWARE.\"");
const char *version = "version 20220530";
extern int nfields;