* parse.c (target_map_name_to_register): Check target specific
[deliverable/binutils-gdb.git] / gprof / .Sanitize
CommitLineData
e33bfde7 1# .Sanitize for devo/gprof
92f73b42 2
e33bfde7 3# Each directory to survive its way into a release will need a file
92f73b42
SEF
4# like this one called "./.Sanitize". All keyword lines must exist,
5# and must exist in the order specified by this file. Each directory
6# in the tree will be processed, top down, in the following order.
7
8# Hash started lines like this one are comments and will be deleted
9# before anything else is done. Blank lines will also be squashed
10# out.
11
12# The lines between the "Do-first:" line and the "Things-to-keep:"
13# line are executed as a /bin/sh shell script before anything else is
e33bfde7 14# done in this directory.
92f73b42
SEF
15
16Do-first:
17
e33bfde7 18
92f73b42 19# All files listed between the "Things-to-keep:" line and the
e33bfde7 20# "Do-last:" line will be kept. All other files will be removed.
92f73b42
SEF
21# Directories listed in this section will have their own Sanitize
22# called. Directories not listed will be removed in their entirety
23# with rm -rf.
24
25Things-to-keep:
87756e15 26
f86ee9d6 27.gdbinit
5d32c952 28ChangeLog
2f1fec47 29Makefile.am
92f73b42 30Makefile.in
f86ee9d6
KR
31NOTES
32TEST
33TODO
274e44ae 34acconfig.h
2f1fec47 35aclocal.m4
f86ee9d6 36alpha.c
f86ee9d6
KR
37basic_blocks.c
38basic_blocks.h
e33bfde7 39bb_exit_func.c
249da916 40bbconv.pl
3d3e494e 41bsd_callg_bl.m
f86ee9d6
KR
42call_graph.c
43call_graph.h
44cg_arcs.c
45cg_arcs.h
46cg_dfn.c
47cg_dfn.h
48cg_print.c
49cg_print.h
7858d8dc 50configure
bc63a3a0 51configure.bat
92f73b42 52configure.in
43870aec
ILT
53corefile.c
54corefile.h
3d3e494e
PB
55flat_bl.m
56fsf_callg_bl.m
274e44ae 57gconfig.in
3d3e494e 58gen-c-prog.awk
92f73b42 59gmon.h
f86ee9d6
KR
60gmon_io.c
61gmon_io.h
62gmon_out.h
92f73b42
SEF
63gprof.1
64gprof.c
92f73b42 65gprof.h
5afba784 66gprof.texi
92f73b42 67hertz.c
f86ee9d6
KR
68hertz.h
69hist.c
70hist.h
92f73b42 71i386.c
e33bfde7 72po
f86ee9d6
KR
73search_list.c
74search_list.h
75source.c
76source.h
92f73b42 77sparc.c
274e44ae 78stamp-h.in
f86ee9d6
KR
79sym_ids.c
80sym_ids.h
81symtab.c
82symtab.h
92f73b42 83tahoe.c
74a89115
KR
84utils.c
85utils.h
92f73b42 86vax.c
92f73b42 87
87756e15
RP
88Things-to-lose:
89
f86ee9d6 90.cvsignore
71128bd7
JL
91make_hp_order_obj
92make_solaris_order_map
f86ee9d6 93
e33bfde7
ILT
94# The lines between the "Do-last:" line and the end of the file
95# are executed as a /bin/sh shell script after everything else is
96# done.
97
92f73b42
SEF
98Do-last:
99
3d96e9b4
TT
100# This must come after all other sanitizations. Re-sanitize the .pot
101# file.
102if [ -n "${verbose}" ]; then
103 echo Re-computing files for gettext ...
104fi
105
106if [ -n "${safe}" -a ! -f po/.Recover/POTFILES.in ]; then
107 if [ -n "${verbose}" ]; then
108 echo Caching po/POTFILES.in in .Recover...
109 fi
110 mv po/POTFILES.in po/.Recover
111fi
112find . -name '*.[ch]' | sed -e 's,^\./,,' > po/POTFILES.in
113
114if [ -n "${safe}" -a ! -f po/.Recover/gprof.pot ]; then
115 if [ -n "${verbose}" ]; then
116 echo Caching po/gprof.pot in .Recover...
117 fi
118 mv po/gprof.pot po/.Recover
119fi
d6f3da9b 120# If this fails, Sanitization must fail.
ee66b572 121xgettext -c -k_ -kN_ -f po/POTFILES.in -o po/gprof.pot || exit 1
3d96e9b4 122
e33bfde7 123# eof
This page took 0.20094 seconds and 4 git commands to generate.