BSD 4 release
[unix-history] / usr / src / cmd / make / ident.c
CommitLineData
31cef89c 1char *xxxvers = "\n@(#) MAKE. VERSION 2.61 13 AUGUST 1980\n" ;
36be9057
BJ
2
3/*
42.1 4/24/76 Base version
5
62.2 4/26/76 Error found by SRB in overriding pattern rules;
7 corrected gram.y
8
92.3 4/27/76 Further correction for overriding pattern rules;
10 corrected doname.c
11
122.4 Removed .CLEAR name, added .IGNORE.
13 A .SUFFIXES rule without dependents clears the list
14
152.5 Stripped output
16
172.6 Changed doshell to accomodate new shell.
18
192.7 Following SRB's sugestion, added ${...} as
20 alternate macro name
21
222.8 Defined macros AS and DTGEN in files.c.
23
242.9 Put in a fix to prevent removal of files
25 upon interrupt in a :: rule.
26
272.10 Fixed bugs involving messages for ::
28 and closing standard input
29
302.11 Changed time test from <= to <
31 (equal times are considered in sync)
32
332.12 Installed -t flag (touch and update time of
34 files rather than issue commands)
35 Fixed bug in dosys
36
372.13 Fixed lex.c to allow sharps (#) in commands
38
392.14 Added .DEFAULT rule
40
412.15 Changed to <lS> I/O System (stdio.h)
42
432.16 Removed references to double floats and macro HAVELONGS;
44 committed to use of long ints for times.
452.17 Corrected metacharacter list in dosys.c.
462.18 Miscellaneous fixes
472.19 Updated files.c to use include file stat.h
482.20 Added -q flag for Mike Lesk
492.21 Added AWK rules and .w suffix to files.c
502.22 Added colon to the list of metacharacters
512.23 Macro substitutions on dependency lines.
52 Redid argument and macro setting.
53 Close files before exec'ing.
54 Print > at beginning of command lines.
55 No printing of commands beginnng with @.
562.24 Parametrized propt sequence in doname.c (4/1/77)
572.25 Added $? facility
582.26 Fixed bug in macro expansion
592.27 Repaired interrupt handling
602.28 Repaired bug in -n
612.29 Repaired bug in file closing and $? string creation
622.30 Repaired bug in grammar about command lines
632.31 Added -k flag, modified doname.c and defs
642.32 Made "keepgoing" the default, added -S flag,
65 changed handling of funny characters internally
662.3 Small fixups to interrupt and quit handling.
67 Changed default back to -k.
682.34 Added .PRECIOUS rule for interrupts
692.35 Added references to include files (due to TLL)
702.36 Fixed bug in lex.c so = permitted in rules on :; line
712.37 Miscellaneous code cleanups
722.38 Sleep one second after each touch in -t mode
732.39 Extended string[] declaration in doname.c
742.40 Permit recursive macro references
752.41 Separated YYLMAX into INMAX and OUTMAX macros, specifying longest
76 input and output lines respectively.
772.42 Fixed bug involving :: lines without dependents
782.43 Main name is first name that contains a slash or doesn't
79 begin with a dot
802.44 Fixed bug involving $$ on command line
812.45 Changed files.c to put .f before .e, .r and to use f77 instead of fc.
822.46 Changed dosys.c to eliminate copying and to call execvp.
832.47 Changed files.c to add ".out" suffix and rules.
842.48 Changed misc.c to permit tabs preceding = in macro definition
852.49 Added reference to <ctyp.h>. Removed -lS references from files.c
862.50 General cleanup to reduce lint messages. (changes in declarations
87 and in uses of variables)
882.51 Further cleanup making use of new Yacc features.
892.52
902.53 Changed handling of "touch"
912.54 Fixed bug involving comments in lexical analyzer.
922.55 Ignore commands that begin with a # are comments.
932.56 Added = to list of META characters (to permit shell commands)
942.57 Changed lookarch and getobj to fix bugs.
952.58 Fixed interrupt handling.
962.59 Changed references to sprintf to accomodate new function definition
97 Also fixed extern declarations.
982.60 Limited the number of open directories.
31cef89c 992.61 Added code to handle archives with ascii headers.
36be9057 100*/