2 |
7u83 |
1 |
#!/bin/sh -x
|
|
|
2 |
|
|
|
3 |
#
|
|
|
4 |
# TOUCH ALL AUTOMATICALLY GENERATED FILES
|
|
|
5 |
#
|
|
|
6 |
# The source contains a great number of automatically generated files.
|
|
|
7 |
# During the installation process the tools used to generate these files
|
|
|
8 |
# are generally built before they are used, but this is not possible
|
|
|
9 |
# for tools like calculus, lexi and sid which are defined in terms of
|
|
|
10 |
# themselves. The datestamps on the files provided in the release
|
|
|
11 |
# should prevent the makefiles from building the automatically generated
|
|
|
12 |
# files in the initial installation. If the datestamps become corrupted
|
|
|
13 |
# then this script can be used to touch all the automatically generated
|
|
|
14 |
# files.
|
|
|
15 |
#
|
|
|
16 |
|
|
|
17 |
BASE="../.."
|
|
|
18 |
TOUCH="touch -c"
|
|
|
19 |
|
|
|
20 |
${TOUCH} ${BASE}/src/installers/common/reader/decoder.c
|
|
|
21 |
${TOUCH} ${BASE}/src/installers/common/reader/ecodes.h
|
|
|
22 |
${TOUCH} ${BASE}/src/installers/common/reader/externs.h
|
|
|
23 |
${TOUCH} ${BASE}/src/installers/common/reader/inits.h
|
|
|
24 |
${TOUCH} ${BASE}/src/installers/common/reader/main_reads.h
|
|
|
25 |
${TOUCH} ${BASE}/src/installers/common/reader/temp_fns.new
|
|
|
26 |
|
|
|
27 |
${TOUCH} ${BASE}/src/producers/c/syntax/syntax*.c
|
|
|
28 |
${TOUCH} ${BASE}/src/producers/c/syntax/syntax.h
|
|
|
29 |
|
|
|
30 |
${TOUCH} ${BASE}/src/producers/common/obj_c/*.h
|
|
|
31 |
${TOUCH} ${BASE}/src/producers/common/obj_tok/*.h
|
|
|
32 |
${TOUCH} ${BASE}/src/producers/common/output/tdf1.h
|
|
|
33 |
${TOUCH} ${BASE}/src/producers/common/parse/psyntax*.c
|
|
|
34 |
${TOUCH} ${BASE}/src/producers/common/parse/psyntax.h
|
|
|
35 |
${TOUCH} ${BASE}/src/producers/common/utility/errors*.h
|
|
|
36 |
${TOUCH} ${BASE}/src/producers/common/utility/opts.h
|
|
|
37 |
|
|
|
38 |
${TOUCH} ${BASE}/src/producers/cpp/syntax/syntax*.c
|
|
|
39 |
${TOUCH} ${BASE}/src/producers/cpp/syntax/syntax.h
|
|
|
40 |
|
|
|
41 |
${TOUCH} ${BASE}/src/tools/disp/tdf.c
|
|
|
42 |
${TOUCH} ${BASE}/src/tools/disp/tdf.h
|
|
|
43 |
|
|
|
44 |
${TOUCH} ${BASE}/src/tools/pl/consfile.c
|
|
|
45 |
${TOUCH} ${BASE}/src/tools/pl/consfile.h
|
|
|
46 |
${TOUCH} ${BASE}/src/tools/pl/decodings.c
|
|
|
47 |
${TOUCH} ${BASE}/src/tools/pl/decodings.h
|
|
|
48 |
${TOUCH} ${BASE}/src/tools/pl/enc_nos.h
|
|
|
49 |
${TOUCH} ${BASE}/src/tools/pl/encodings.h
|
|
|
50 |
${TOUCH} ${BASE}/src/tools/pl/fnsfile.c
|
|
|
51 |
${TOUCH} ${BASE}/src/tools/pl/syntax.c
|
|
|
52 |
${TOUCH} ${BASE}/src/tools/pl/syntax.h
|
|
|
53 |
|
|
|
54 |
${TOUCH} ${BASE}/src/tools/tld/gen-errors.c
|
|
|
55 |
${TOUCH} ${BASE}/src/tools/tld/gen-errors.h
|
|
|
56 |
|
|
|
57 |
${TOUCH} ${BASE}/src/tools/tnc/check_exp.h
|
|
|
58 |
${TOUCH} ${BASE}/src/tools/tnc/tdf.c
|
|
|
59 |
${TOUCH} ${BASE}/src/tools/tnc/tdf.h
|
|
|
60 |
|
|
|
61 |
${TOUCH} ${BASE}/src/tools/tspec/keyword.h
|
|
|
62 |
${TOUCH} ${BASE}/src/tools/tspec/lexer.h
|
|
|
63 |
${TOUCH} ${BASE}/src/tools/tspec/syntax.c
|
|
|
64 |
${TOUCH} ${BASE}/src/tools/tspec/syntax.h
|
|
|
65 |
|
|
|
66 |
${TOUCH} ${BASE}/src/utilities/calculus/keyword.h
|
|
|
67 |
${TOUCH} ${BASE}/src/utilities/calculus/lexer.h
|
|
|
68 |
${TOUCH} ${BASE}/src/utilities/calculus/obj_c/*.h
|
|
|
69 |
${TOUCH} ${BASE}/src/utilities/calculus/obj_tok/*.h
|
|
|
70 |
${TOUCH} ${BASE}/src/utilities/calculus/print_def.h
|
|
|
71 |
${TOUCH} ${BASE}/src/utilities/calculus/read_def.h
|
|
|
72 |
${TOUCH} ${BASE}/src/utilities/calculus/syntax.c
|
|
|
73 |
${TOUCH} ${BASE}/src/utilities/calculus/syntax.h
|
|
|
74 |
${TOUCH} ${BASE}/src/utilities/calculus/write_def.h
|
|
|
75 |
|
|
|
76 |
${TOUCH} ${BASE}/src/utilities/lexi/keyword.h
|
|
|
77 |
${TOUCH} ${BASE}/src/utilities/lexi/lexer.h
|
|
|
78 |
${TOUCH} ${BASE}/src/utilities/lexi/syntax.c
|
|
|
79 |
${TOUCH} ${BASE}/src/utilities/lexi/syntax.h
|
|
|
80 |
|
|
|
81 |
${TOUCH} ${BASE}/src/utilities/make_err/keyword.h
|
|
|
82 |
${TOUCH} ${BASE}/src/utilities/make_err/lexer.h
|
|
|
83 |
${TOUCH} ${BASE}/src/utilities/make_err/obj_c/*.h
|
|
|
84 |
${TOUCH} ${BASE}/src/utilities/make_err/obj_tok/*.h
|
|
|
85 |
${TOUCH} ${BASE}/src/utilities/make_err/syntax.c
|
|
|
86 |
${TOUCH} ${BASE}/src/utilities/make_err/syntax.h
|
|
|
87 |
|
|
|
88 |
${TOUCH} ${BASE}/src/utilities/make_tdf/keyword.h
|
|
|
89 |
${TOUCH} ${BASE}/src/utilities/make_tdf/lexer.h
|
|
|
90 |
${TOUCH} ${BASE}/src/utilities/make_tdf/obj_c/*.h
|
|
|
91 |
${TOUCH} ${BASE}/src/utilities/make_tdf/obj_tok/*.h
|
|
|
92 |
${TOUCH} ${BASE}/src/utilities/make_tdf/syntax.c
|
|
|
93 |
${TOUCH} ${BASE}/src/utilities/make_tdf/syntax.h
|
|
|
94 |
|
|
|
95 |
${TOUCH} ${BASE}/src/utilities/sid/c-junk.h
|
|
|
96 |
${TOUCH} ${BASE}/src/utilities/sid/c-parser.c
|
|
|
97 |
${TOUCH} ${BASE}/src/utilities/sid/gen-errors.c
|
|
|
98 |
${TOUCH} ${BASE}/src/utilities/sid/gen-errors.h
|
|
|
99 |
${TOUCH} ${BASE}/src/utilities/sid/junk.h
|
|
|
100 |
${TOUCH} ${BASE}/src/utilities/sid/parser.c
|