* cris/traps.c (abort): Define to call sim_io_error.
[platform/upstream/binutils.git] / sim / ChangeLog
1 2009-01-06  Hans-Peter Nilsson  <hp@axis.com>
2
3         * cris/traps.c (abort): Define to call sim_io_error.
4         (create_map): Make -1 imply a non-fixed address, not 0.  All
5         callers changed.  Only prefer the next higher unmapped address if
6         the last mapped address is no less than 0x40000000.  Check that
7         the address to be mapped is not already mapped.  Update head
8         comment.
9         (unmap_pages): Don't call abort when recursive call fails, just
10         note and return an error if a page in the range couldn't be unmapped.
11         (cris_bmod_handler, h_supr_set_handler, h_supr_get_handler)
12         (schedule, make_first_thread, cris_pipe_empty): New local variable sd.
13         (cris_break_13_handler) <case TARGET_SYS_mmap2>: Handle
14         non-MAP_FIXED argument overlapping existing map.  For MAP_FIXED,
15         don't abort on page not being mapped.  Handle non-anon filemap
16         with length padded to pagesize.
17
18 2009-01-03  Hans-Peter Nilsson  <hp@axis.com>
19
20         * cris/sim-if.c (TARGET_AT_NULL, TARGET_AT_PHDR, TARGET_AT_PHENT)
21         (TARGET_AT_PHNUM, TARGET_AT_PAGESZ, TARGET_AT_BASE)
22         (TARGET_AT_FLAGS, TARGET_AT_ENTRY, TARGET_AT_UID, TARGET_AT_EUID)
23         (TARGET_AT_GID, TARGET_AT_EGID, TARGET_AT_HWCAP)
24         (TARGET_AT_CLKTCK): Remove redundant macros.
25         (AUX_ENT): Adjust to use standard ELF AT_* macros.
26         (AUX_ENTF): Ditto.  Remove always-0 middle argument.  Update all
27         callers.
28         (sim_open): Also pass AT_SECURE.
29
30         * cris/sim-main.h (struct _sim_cpu): New member
31         set_target_thread_data.
32         * cris/crisv32f.c (CRIS_TLS_REGISTER): Define.
33         * cris/crisv10f.c: Ditto.
34         * cris/cris-tmpl.c (MY (set_target_thread_data)): New function.
35         (MY (f_specific_init)): Set new _sim_cpu member to new function.
36         * cris/traps.c (TARGET_SYS_set_thread_area): Define.
37         (cris_break_13_handler) <case TARGET_SYS_set_thread_area>: New
38         case.
39
40         * cris/traps.c (TARGET_SYS_exit_group): Define.
41         (cris_break_13_handler): Handle it like the exit for the last
42         thread.
43
44         * cris/traps.c (TARGET_UTSNAME): Update to 2009-01-01.
45         (TARGET_EPOCH): Update to match TARGET_UTSNAME.  Correct comment.
46         (cris_break_13_handler) <case TARGET_SYS_uname>: Update to
47         2.6.27.  Set machine field to the BFD printable name of the
48         machine.
49
50         * cris/traps.c (TARGET_MAP_DENYWRITE): Define.
51         (cris_break_13_handler) <case TARGET_SYS_mmap2>: Handle
52         TARGET_MAP_DENYWRITE.
53
54         * cris/traps.c (TARGET_SYS_access, TARGET_R_OK, TARGET_W_OK)
55         (TARGET_X_OK, TARGET_F_OK): Define.
56         (cris_break_13_handler) <case TARGET_SYS_access>: New case.
57
58         * cris/semcrisv32f-switch.c: Regenerate.
59
60 2008-12-30  Hans-Peter Nilsson  <hp@axis.com>
61
62         * cris/sim-if.c (sim_open): If sim_analyze_program fails, emit
63         just a short CRIS-specific notice.  Tweak the wording for a
64         failing architecture test.
65
66         * cris/traps.c (TARGET_SYS_writev): New macro.
67         (is_mapped_only, cris_dump_map): New functions.
68         (cris_break_13_handler) <case TARGET_SYS_mmap2>: Handle more flags
69         and prot combinations and a non-zero page-offset.  If
70         TARGET_MAP_FIXED, unmap pages before mapping them.
71         <case TARGET_SYS_mprotect>: When checking, allow any length
72         argument.  Don't actually do anything.
73         <case TARGET_SYS_writev>: New case.
74
75         * cris/Makefile.in (SIM_OBJS): Remove sim-hload.o.
76         * cris/sim-if.c: Include elf-bfd.h.
77         (struct progbounds): New members end_loadmem, start_nonloadmem.
78         (xprintf, eprintf): New functions, copied from common/sim-load.c.
79         (cris_load_elf_file, sim_load, cris_get_progbounds): New functions.
80         (get_progbounds_iterator): Renamed from get_progbounds.  Make
81         static.  Update head comment.  Set new struct progbounds members.
82         (exec_load_addr, interp_load_addr, interp_start_addr): New static
83         variables.
84         (aux_ent_phdr, aux_ent_phent, aux_ent_phnum, aux_ent_base)
85         (aux_ent_entry, cris_write_interp, cris_handle_interpreter): New
86         functions.
87         (sim_open): New constant array auxv_entries.  Rewrite AUX_ENT
88         handling to use auxv_entries.  Improve error message and checking
89         for invalid programs.  Use new variable abfd for the program
90         instead of for each access reaching into sd to get it.
91         (sim_create_inferior): If non-zero, use interp_start_addr instead
92         of the program start address.
93         (cris_disassemble_insn): Remove incorrect and unclear, supposedly
94         stale comment.  Always specify little-endian.
95
96 2008-07-29  Nick Clifton  <nickc@redhat.com>
97
98         * common/genmloop.sh: Add new parameter: -shell to specify the
99         command interpreter to use to run the input file.  This is
100         necessary because otherwise SHELL is taken from the user's
101         environment, and not from the makefile that invoked this script
102         and the user might not be running an sh-like shell.
103         * cris/Makefile.in: Pass -shell parameter to genmloop.sh.
104         * fr30/Makefile.in: Likewise.
105         * frv/Makefile.in: Likewise.
106         * i960/Makefile.in: Likewise.
107         * iq2000/Makefile.in: Likewise.
108         * m32r/Makefile.in: Likewise.
109
110         * frv/mloop.in: Add missing start of line comment marker.
111
112 2008-07-11  Hans-Peter Nilsson  <hp@axis.com>
113
114         * cris/configure: Regenerate to track ../common/common.m4 changes.
115         * cris/config.in: Ditto.
116
117 2008-06-06  Vladimir Prus  <vladimir@codesourcery.com>
118             Daniel Jacobowitz  <dan@codesourcery.com>
119             Joseph Myers  <joseph@codesourcery.com>
120
121         * cris/configure: Regenerate.
122
123 2008-05-09  Olivier Hainque  <hainque@adacore.com>
124
125         * ppc/altivec.igen (vperm): Latch inputs into temporaries.
126
127 2008-03-25  M R Swami Reddy <MR.Swami.Reddy@nsc.com>
128
129         * MAINTAINERS: Add myself as maintainer of cr16 port.
130
131 2008-02-12  M Ranga Swami Reddy <MR.Swami.Reddy@nsc.com>
132
133         Add simulator for National cr16 processor.
134         * cr16: New directory.
135         * configure.ac: Add entry for National cr16.
136         * configure: Regenerate.
137
138 2008-02-05  DJ Delorie  <dj@redhat.com>
139
140         * configure.ac (v850): V850 now has a testsuite.
141         * configure (v850): Likewise.
142
143 2008-01-01  Daniel Jacobowitz  <dan@codesourcery.com>
144
145         Updated copyright notices for most files.
146
147 2007-12-19  DJ Delorie  <dj@redhat.com>
148
149         * frv/frv.c (frvbf_cut): Only look at the six LSBs of
150         cut_point.
151
152 2007-10-22  Hans-Peter Nilsson  <hp@axis.com>
153
154         * cris/arch.c, cris/arch.h, cris/cpuall.h, cris/cpuv10.c,
155         cris/cpuv10.h, cris/cpuv32.c, cris/cpuv32.h, cris/cris-desc.c,
156         cris/cris-desc.h, cris/cris-opc.h, cris/decodev10.c,
157         cris/decodev10.h, cris/decodev32.c, cris/decodev32.h,
158         cris/modelv10.c, cris/modelv32.c, cris/semcrisv10f-switch.c,
159         cris/semcrisv32f-switch.c: Regenerate.
160
161 2007-08-24  Joel Brobecker  <brobecker@adacore.com>
162
163         Switch the license of all files explicitly copyright the FSF
164         to GPLv3.
165
166 2007-03-27  Brooks Moses  <brooks.moses@codesourcery.com>
167
168         * Makefile.in: Add dummy "pdf" target.
169
170 2007-02-20  Hans-Peter Nilsson  <hp@axis.com>
171
172         * cris/traps.c (dump_statistics): Change format for cycle numbers
173         to %llu and cast parameters to unsigned long long.
174
175 2007-02-16  Thiemo Seufer  <ths@mips.com>
176
177         * Makefile.in (FLAGS_TO_PASS, TARGET_FLAGS_TO_PASS): Add RUNTEST.
178
179 2007-01-28  Manuel Lauss  <slauss@resi.at>
180
181         * configure.ac (sh64-*-*): Change to sh64*-*-*.
182         (sh-*-*): Change to sh*-*-*.
183         * configure: Regenerated.
184
185 2007-01-09  Daniel Jacobowitz  <dan@codesourcery.com>
186
187         Updated copyright notices for most files.
188
189 2006-12-20  Hans-Peter Nilsson  <hp@axis.com>
190
191         * Makefile.in (autoconf-common autoheader-common): Only run
192         autoheader on subdirs with a file config.in.
193
194         * configure.ac (common): Make the default "yes" for all targets
195         with sim subdirs.
196         * configure: Regenerate.
197
198         * Makefile.in (autoconf-common autoheader-common): In documented
199         usage, say SHELL=/bin/sh.
200         (.PHONY): Add autoheader-common.
201
202         * MAINTAINERS: Add self as authorized committer for *.
203
204 2006-10-02  Edgar E. Iglesias  <edgar@axis.com>
205             Hans-Peter Nilsson  <hp@axis.com>
206
207         * cris/cris-sim.h (enum cris_unknown_syscall_action_type)
208         (cris_unknown_syscall_action): Declare.
209         * cris/sim-if.c (cris_unknown_syscall_action): Define.
210         (cris_options): Add cris-unknown-syscall option.
211         (cris_option_handler): Correct comment about and error message for
212         invalid --cris-cycles argument.  Handle --cris-unknown-syscall.
213         * cris/traps.c: Include stdarg.h
214         (cris_unknown_syscall): New function.
215         (cris_break_13_handler): Instead of sim_io_eprintf and
216         sim_engine_halt, call cris_unknown_syscall to handle more or less
217         unknown syscalls.  Adjust code as necessary to handle return
218         value.
219
220 2006-09-30  Daniel Jacobowitz  <dan@codesourcery.com>
221
222         * MAINTAINERS: Add Dave Brolley for sh64.
223
224 2006-09-30  Hans-Peter Nilsson  <hp@axis.com>
225
226         * cris/traps.c (TARGET_PIPE_BUF): New macro.
227         (cris_pipe_empty): Correct initialization of "remaining".  Only
228         adjust the "write" return value if more than TARGET_PIPE_BUF bytes
229         are written.
230
231 2006-09-29  Hans-Peter Nilsson  <hp@axis.com>
232
233         * cris/configure.ac: Check for limits.h and sys/param.h.
234         * cris/configure, cris/config.in: Rebuild.
235         * cris/traps.c (SIM_PATHMAX): New macro.
236         (cris_break_13_handler): Use SIM_PATHMAX, not MAXPATHLEN.
237
238 2006-08-08  Joel Sherrill <joel.sherrill@oarcorp.com>
239
240         * configure.ac (sparc-*-rtems*|sparc-*-elf*): Enable erc32 simulator.
241         * Makefile.in (FLAGS_TO_PASS): Include libdir.
242         * configure: Regenerated.
243
244 2006-06-05  Daniel Jacobowitz  <dan@codesourcery.com>
245
246         * cris/configure: Regenerated.
247
248 2006-05-31  Daniel Jacobowitz  <dan@codesourcery.com>
249
250         * cris/configure: Regenerated.
251
252 2006-05-05  Andreas Schwab  <schwab@suse.de>
253
254         * configure.ac (CFLAGS_FOR_BUILD): Set and substitute.
255         * configure: Regenerate.
256
257         * Makefile.in (CFLAGS_FOR_BUILD): Define.
258         (CC_FOR_BUILD): Don't override.
259         (FLAGS_TO_PASS): Pass CFLAGS_FOR_BUILD.
260
261 2006-05-04  Daniel Jacobowitz  <dan@codesourcery.com>
262
263         * MAINTAINERS: Add an "Authorized committers" section, and list
264         DJ Delorie for v850.
265
266 2006-04-08  Hans-Peter Nilsson  <hp@axis.com>
267
268         * cris/crisv32f.c (MY (deliver_interrupt)): Set CCS to new_ccs.
269
270 2006-04-03  Hans-Peter Nilsson  <hp@axis.com>
271
272         * cris/dv-cris.c, cris/dv-rv.c, cris/rvdummy.c: New files.
273         * cris/Makefile.in (CONFIG_DEVICES): Remove redundant setting.
274         (dv-cris.o, dv-rv.o rvdummy$(EXEEXT), rvdummy.o): New rules.
275         (all): Depend on rvdummy$(EXEEXT).
276         * cris/configure.ac: Call SIM_AC_OPTION_WARNINGS.  Check for
277         sys/socket.h and sys/select.h.  Call SIM_AC_OPTION_HARDWARE,
278         default off.
279         * cris/configure: Regenerate.
280         * cris/cris-sim.h (cris_have_900000xxif): Declare here.
281         (enum cris_interrupt_type, crisv10deliver_interrupt)
282         (crisv32deliver_interrupt: New declarations.
283         * cris/cris-tmpl.c [WITH_HW] (MY (f_model_insn_after)): Call
284         sim_events_tickn and set state-events member work_pending when it's
285         time for the next event.
286         [WITH_HW] (MY (f_specific_init)): Set CPU-model-specific
287         interrupt-delivery function.
288         * cris/crisv10f.c (MY (deliver_interrupt)): New function.
289         * cris/crisv32f.c (MY (deliver_interrupt)): New function.
290         * cris/devices.c: Include hw-device.h.
291         (device_io_read_buffer) [WITH_HW]: Call hw_io_read_buffer.
292         (device_io_write_buffer): Only perform 0x900000xx-functions if
293         cris_have_900000xxif is nonzero.  Else if WITH_HW defined,
294         call hw_io_write_buffer.  Add return 0 last in function.
295         * cris/sim-if.c (cris_have_900000xxif): Now global.
296         (sim_open) [WITH_HW]: Clear deliver_interrupt cpu member.
297         Force "-model" option, effectively.
298         * cris/sim-main.h (cris_interrupt_delivery_fn): New type.
299         (struct _sim_cpu) [WITH_HW]: New member deliver_interrupt.
300
301 2006-04-02  Hans-Peter Nilsson  <hp@axis.com>
302
303         * cris/Makefile.in (CRISV10F_OBJS): Remove semcrisv10f-switch.o.
304         (CRISV32F_OBJS): Remove semcrisv32f-switch.o.
305         (semcrisv10f-switch.o, semcrisv32f-switch.o: Remove dependency rules.
306
307 2006-03-13  DJ Delorie  <dj@redhat.com>
308
309         * MAINTAINERS: Add self as m32c sim maintainer.
310
311 2006-02-23  Hans-Peter Nilsson  <hp@axis.com>
312
313         * cris/traps.c (syscall_map): Remove CB_SYS_time / TARGET_SYS_time
314         mapping.
315         (cris_break_13_handler) <case TARGET_SYS_time>: New case.
316
317 2006-01-23  Jim Blandy  <jimb@redhat.com>
318
319         Add simulator for Renesas M32C and M16C.
320
321         * m32c: New directory.
322         * configure.ac: Add entry for Renesas M32C.
323         * configure: Regenerate.
324
325 2006-01-10  Hans-Peter Nilsson  <hp@axis.com>
326
327         * cris/cris-tmpl.c (MY (f_model_insn_before)): Only display basic
328         cycle count for the current insn.
329
330 2005-12-06  Hans-Peter Nilsson  <hp@axis.com>
331
332         * cris/cpuv10.h, cris/cpuv32.h, cris/cris-desc.c, cris/cris-opc.h,
333         cris/decodev10.c, cris/decodev10.h, cris/decodev32.c,
334         cris/decodev32.h, cris/modelv10.c, cris/modelv32.c,
335         cris/semcrisv10f-switch.c, cris/semcrisv32f-switch.c: Regenerate.
336
337 2005-12-05  Hans-Peter Nilsson  <hp@axis.com>
338
339         * cris/arch.c, cris/arch.h, cris/cpuall.h, cris/cpuv10.c,
340         cris/cpuv10.h, cris/cpuv32.c, cris/cpuv32.h, cris/cris-desc.c,
341         cris/cris-desc.h, cris/cris-opc.h, cris/decodev10.c,
342         cris/decodev10.h, cris/decodev32.c, cris/decodev32.h,
343         cris/modelv10.c, cris/modelv32.c, cris/semcrisv10f-switch.c,
344         cris/semcrisv32f-switch.c: Regenerate.
345
346 2005-11-20  Hans-Peter Nilsson  <hp@axis.com>
347
348         * cris/traps.c (TARGET_O_RDONLY, TARGET_O_WRONLY): Define.
349         (open_map): Use TARGET_O_ACCMODE, TARGET_O_RDONLY and
350         TARGET_O_WRONLY.
351         (cris_break_13_handler) <case TARGET_SYS_fcntl>: Add support for
352         F_GETFL on fd 0, 1 and 2.
353
354 2005-11-17  Hans-Peter Nilsson  <hp@axis.com>
355
356         * cris/sim-main.h (struct _sim_cpu): New members last_syscall,
357         last_open_fd, last_open_flags.
358         * cris/traps.c: Don't include targ-vals.h.
359         (TARGET_O_ACCMODE): Define.
360         (cris_break_13_handler): Set new _sim_cpu members.
361         <case TARGET_SYS_fcntl>: Support special case of F_GETFL.
362         Rearrange code as switch.  Emit "unimplemented" abort for
363         unimplemented fcntl calls.
364
365         * cris/traps.c (TARGET_SYS_stat): Define.
366         (syscall_stat32_map): Add entry for TARGET_SYS_stat.
367         (cris_break_13_handler) <case TARGET_SYS_stat>: New case.
368
369 2005-11-16  Hans-Peter Nilsson  <hp@axis.com>
370
371         * cris/cris-tmpl.c (MY (f_model_insn_before)): Make sure only the
372         low 32 bits are used after an unsigned long cast.
373
374 2005-05-28  Hans-Peter Nilsson  <hp@axis.com>
375
376         * cris/Makefile.in (stamp-v32fmloop): Depend on stamp-v10fmloop.
377
378 2005-05-26  Chris Demetriou  <cgd@netbsd.org>
379
380         * MAINTAINERS: Update my mail address, move myself to the
381         "Past maintainers" section.
382
383 2005-05-17  Corinna Vinschen  <vinschen@redhat.com>
384
385         * configure.ac: Add igen to v850 build.
386         * configure: Regenerate.
387
388 2005-04-29  Paul Brook  <paul@codesourcery.com>
389
390         * common/callback.c (PIPE_BUF): Provide default definition.
391         (os_lstat): Use stat if lstat is not available on the host.
392         (os_ftruncate): Return EINVAL if not available on the host.
393         (os_truncate): Ditto.
394         * common/configure.ac: Check for lstat, truncate and ftruncate.
395         * common/configure: Regenerate.
396         * common/config.in: Regenerate.
397
398 2005-04-27  Paul Brook  <paul@codesourcery.com>
399
400         * common/Make-common.in: Add $(EXEEXT) to "run".
401
402 2005-04-18  Hans-Peter Nilsson  <hp@axis.com>
403
404         * cris/traps.c (cris_break_13_handler) <case TARGET_SYS_mmap2>:
405         For ((len & 8191) != 0 && fd == (USI) -1), don't say this isn't
406         implemented.  In call to create_map, pad length argument to 8k. 
407
408 2005-04-15  Corinna Vinschen  <vinschen@redhat.com>
409
410         * configure.ac: Add explicit sh64 case.
411         * configure: Regenerate.
412
413 2005-03-30  Paul Brook  <paul@codesourcery.com>
414
415         * arm/wrapper.c: Provide SIGTRAP and SIGBUS.
416
417 2005-03-24  Hans-Peter Nilsson  <hp@axis.com>
418
419         * cris/Makefile.in (stamp-v10fcpu, stamp-v32fcpu): Add kludge to
420         include cgen-ops.h in decodev10.c and decodev32.c.
421         * cris/sim-main.h: Don't include cgen-ops.h here.
422         * cris/arch.c, cris/arch.h, cris/cpuall.h, cris/cpuv10.c,
423         cris/cpuv10.h, cris/cpuv32.c, cris/cpuv32.h, cris/cris-desc.c,
424         cris/cris-desc.h, cris/cris-opc.h, cris/decodev10.c,
425         cris/decodev10.h, cris/decodev32.c, cris/decodev32.h,
426         cris/modelv10.c, cris/modelv32.c, cris/semcrisv10f-switch.c,
427         cris/semcrisv32f-switch.c: Regenerate.
428
429         * cris/traps.c (cris_break_13_handler) <case
430         TARGET_SYS_rt_sigaction>: Rename sa_handler, sa_flags,
431         sa_restorer, sa_mask_low, sa_mask_high to target_sa_handler etc.
432
433 2005-03-23  Mark Kettenis  <kettenis@gnu.org>
434
435         * cris/configure: Regenerate.
436
437 2005-02-28  Jim Blandy  <jimb@redhat.com>
438
439         * d10v/configure.ac, igen/configure.ac, m68hc11/configure.ac,
440         mips/configure.ac, mn10300/configure.ac, v850/configure.ac:
441         Regenerated, after change to common/aclocal.m4.
442
443 2005-02-18  Corinna Vinschen  <vinschen@redhat.com>
444
445         * iq2000: New target subdirectory.
446         * configure.ac: Add iq2000 target.
447         * configure: Regenerate.
448
449 2005-01-29  Hans-Peter Nilsson  <hp@axis.com>
450
451         * Makefile.in (all, clean mostlyclean, distclean maintainer-clean)
452         (realclean, install): Fail if subdir make failed.
453
454 2005-01-28  Hans-Peter Nilsson  <hp@axis.com>
455
456         * cris: New directory, simulator for Axis Communications CRIS
457         including CRIS v32, CGEN-based.
458         * configure.ac: Add corresponding configury.
459         * configure: Regenerate.
460
461 2005-01-17  Andrew Cagney  <cagney@gnu.org>
462
463         * configure.ac: For mips*-*-* and mn10300*-*-* configure the
464         common directory.  Remove sparc*-*-* from list.
465         
466 2005-01-11  Andrew Cagney  <cagney@gnu.org>
467
468         * Makefile.in (autoconf-common autoheader-common): Add --force to
469         autoconf and autoheader.
470         (autoconf-common autoheader-common)
471         (autoconf-install autoheader-install): Check for configure.ac, not
472         configure.in.
473         * configure.ac: Delete AC_CONFIG_AUX_DIR.
474         * configure: Re-generate.
475
476 2005-01-07  Andrew Cagney  <cagney@gnu.org>
477
478         * configure.ac: Replace configure.in.  Requires autoconf 2.59 and
479         correctly calls AC_CONFIG_SUBDIRS.
480         * configure: Re-generate.
481
482 2004-12-01  Andrew Cagney  <cagney@gnu.org>
483
484         * i960, h8500: Delete directory.
485
486 2004-11-12  Andrew Cagney  <cagney@gnu.org>
487
488         * d30v, fr30, mn10200, z8k: Delete directory.
489
490 2004-03-10  Ben Elliston  <bje@gnu.org>
491
492         * MAINTAINERS: Update my mail address.
493
494 2004-01-26  Chris Demetriou  <cgd@broadcom.com>
495
496         * configure.in (mips*-*-*): Configure in testsuite.
497         * configure: Regenerate.
498
499 2003-10-08  Dave Brolley  <brolley@redhat.com>
500
501         * configure.in: Move frv handling to alphabetically correct placement.
502
503 2003-09-03  Andreas Schwab  <schwab@suse.de>
504
505         * Makefile.in (FLAGS_TO_PASS): Pass down $(bindir) and $(mandir).
506
507 2003-08-29  Dave Brolley  <brolley@redhat.com>
508
509         * MAINTAINERS: Add myself as maintainer of the FRV port.
510
511 2003-08-20  Michael Snyder  <msnyder@redhat.com>
512             Dave Brolley  <brolley@redhat.com>
513
514         * frv/: New directory, simulator for the Fujitsu FRV.
515         * configure.in: Add frv configury.
516         * configure: Regenerate.
517
518 2003-08-10  Ben Elliston  <bje@wasabisystems.com>
519
520         * MAINTAINERS: Update my mail address.
521
522 2003-08-09  Andrew Cagney  <cagney@redhat.com>
523
524         * MAINTAINERS: Andrew Cagney (mips) and Geoff Keating (ppc) drop
525         maintenance.  List igen and sh maintainers.  Mention that target
526         and global maintainers pick up the slack.
527
528 2003-07-09  Michael Snyder  <msnyder@redhat.com>
529
530         * configure.in: Add testsuite to extra_subdirs for sh.
531         * configure: Regenerate.
532
533 2003-01-23  Nick Clifton  <nickc@redhat.com>
534
535         * Add sh2e support:
536
537 2002-04-02  Alexandre Oliva  <aoliva@redhat.com>
538
539         * sh/gencode.c: Replace sh3e with sh2e except in fsqrt.
540
541 2002-08-24  Geoffrey Keating  <geoffk@redhat.com>
542
543         * MAINTAINERS: Update my email address.
544
545 2002-07-17  Andrew Cagney  <ac131313@redhat.com>
546
547         * w65/: Delete directory.
548
549 2002-07-16  Andrew Cagney  <ac131313@redhat.com>
550
551         * configure.in (extra_subdirs): Mark fr30-*-* as obsolete.
552         * configure: Re-generate.
553
554 2002-07-13  Andrew Cagney  <ac131313@redhat.com>
555
556         * configure.in (extra_subdirs): Mark d30v-*-* as obsolete.
557         * configure: Re-generate.
558         
559 2002-06-16  Andrew Cagney  <ac131313@redhat.com>
560
561         * Makefile.in (autoconf-changelog autoheader-changelog): Let name,
562         id, date and host to be overriden by NAME, ID, DATE and HOST
563         respectfully.  Use ISO dates.
564
565 Thu Jun  6 12:34:13 2002  Andrew Cagney  <cagney@redhat.com>
566
567         * Makefile.in (ChangeLog): New makefile variable.
568         * README-HACKING: Mention the ChangeLog makefile variable.
569
570 2002-06-01  Andrew Cagney  <ac131313@redhat.com>
571
572         * tic80/: Delete directory.
573
574 2002-05-16  Stephane Carrez  <stcarrez@nerim.fr>
575
576         * MAINTAINERS: Update my email address.
577
578 2002-03-06  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
579
580         * MAINTAINERS: Record self as maintainer of m68hc11 simulator.
581
582 2002-03-01  Frank Ch. Eigler  <fche@redhat.com>
583
584         * MAINTAINERS: Record self as a co-maintainer of just common/.
585
586 2002-02-07  Nick Clifton  <nickc@cambridge.redhat.com>
587
588         * MAINTAINERS: Point to GDB files describing overall maintaince
589         and check-in procedures.
590
591 2002-01-10  Nick Clifton  <nickc@cambridge.redhat.com>
592
593         * MAINTAINERS: Add myself for ARM portions.
594
595 2001-10-19  Andrew Cagney  <ac131313@redhat.com>
596
597         * configure.in: When Linux or NetBSD, enable PowerPC simulator.
598         * configure: Re-generate.
599
600 2001-02-16  Ben Elliston  <bje@redhat.com>
601
602         * MAINTAINERS: Add myself for common portions.
603
604 2001-01-15  Chris Demetriou  <cgd@broadcom.com>
605
606         * MAINTAINERS: Added self and Andrew for the mips sim.
607
608 2000-10-25  Geoff Keating  <geoffk@cygnus.com>
609
610         * MAINTAINERS: Added self and Andrew for the ppc sim.
611
612 Thu Jul 27 21:26:26 2000  Andrew Cagney  <cagney@b1.cygnus.com>
613
614         From Stephane Carrez <Stephane.Carrez@worldnet.fr>:
615         * m68hc11: New directory.
616         * configure.in: Add.
617         * configure: Regenerate.
618
619 Tue Jul  4 13:43:54 2000  Andrew Cagney  <cagney@b1.cygnus.com>
620
621         * tic80: New directory.
622         * configure.in: Add configury.
623         * configure: Regenerate.
624
625 2000-04-20  Nick Clifton  <nickc@cygnus.com>
626
627         * configure.in (extra_subdirs): Add testsuite to strongarm
628         directories. 
629         * configure: Regenerate.
630
631 Sat Mar  4 16:48:54 2000  Andrew Cagney  <cagney@b1.cygnus.com>
632
633         * MAINTAINERS: New file.  Blank.
634
635 1999-11-18  Ben Elliston  <bje@cygnus.com>
636
637         * configure.in: Require autoconf 2.13 and remove obsolete
638         invocation of AC_C_CROSS.
639         * configure: Regenerate.
640
641 1999-09-29  Doug Evans  <devans@casey.cygnus.com>
642
643         * configure.in: Configure the testsuite directory for thumb.
644         * configure: Regenerate.
645
646 1999-07-16  Ben Elliston  <bje@cygnus.com>
647
648         * configure.in: Configure the testsuite directory for arm.
649         * configure: Regenerate.
650
651 1999-04-08  Nick Clifton  <nickc@cygnus.com>
652
653         * configure.in: Add support for MCore target.
654         * configure: Regenerate.
655
656 1999-03-14  Stan Shebs  <shebs@andros.cygnus.com>
657
658         * Makefile.in (FLAGS_TO_PASS, TARGET_FLAGS_TO_PASS): Remove
659         RUNTEST instead of commenting out, fixes portability problem.
660
661 1999-02-08  Nick Clifton  <nickc@cygnus.com>
662
663         * configure.in: Add support for StrongARM target.
664         * configure: Regenerate.
665
666 1999-01-04  Jason Molenda  (jsm@bugshack.cygnus.com)
667
668         * configure.in: Require autoconf 2.12.1 or higher.
669
670 1998-12-08  James E Wilson  <wilson@wilson-pc.cygnus.com>
671
672         * configure.in (i960-*-*): Add.
673         * configure: Rebuild.
674
675 Wed Nov  4 19:11:43 1998  Dave Brolley  <brolley@cygnus.com>
676
677         * configure.in: Added case for fr30-*-*.
678         * configure: Regenerated.
679
680 Fri Sep 25 10:12:19 1998  Christopher Faylor <cgf@cygnus.com>
681
682         * ppc/Makefile.in: Add EXEEXT to installed powerpc-eabi-run program
683         to allow successful operation on Windows.
684
685 Thu May 28 14:59:46 1998 Jillian Ye <jillian@cygnus.com>
686
687         * Makefile.in: Take RUNTEST out of FLAGS_TO_PASS so that make
688         check can be invoked recursively.
689
690 Wed Apr 29 12:38:53 1998  Mark Alexander  <marka@cygnus.com>
691
692         * configure.in: Build simulator on sparclite and sparc86x targets.
693         * configure: Regenerate.
694
695 Sun Apr 26 15:21:01 1998  Tom Tromey  <tromey@cygnus.com>
696
697         * Makefile.in (autoconf-common autoheader-common): Don't pass -l
698         to autoconf and autoheader.
699
700 Fri Apr 24 11:14:13 1998  Tom Tromey  <tromey@cygnus.com>
701
702         * Makefile.in (autoconf-common autoheader-common): Pass `-l
703         ../common' to autoconf and autoheader.  Unconditionally run
704         autoconf in every subdir.
705         (autoconf-changelog autoheader-changelog): Unconditionally run
706         commands in every subdir.
707         (autoconf-install autoheader-install): Likewise.
708
709 Tue Mar 24 17:12:43 1998  Stu Grossman  <grossman@bhuna.cygnus.co.uk>
710
711         * Makefile.in:  Get SHELL from configure.
712         * (FLAGS_TO_PASS):  Pass down SHELL.
713         * configure:  Regenerate with autoconf 2.12.1 to fix shell issues for
714         NT native builds.
715
716 Tue Mar 24 11::18:00 1998  Joyce Janczyn  <janczyn@cygnus.com>
717
718         * configure.in (extra_subdirs): Enable igen for mn10300.
719         * configure: Re-generate.
720
721 Tue Dec  2 10:10:42 1997  Nick Clifton  <nickc@cygnus.com>
722
723         * configure.in (extra_subdirs): Add support for thumb target.
724
725         * configure (extra_subdirs): Add support for thumb target.
726
727 Wed Oct  8 12:38:48 1997  Andrew Cagney  <cagney@b1.cygnus.com>
728
729         * configure.in (extra_subdirs): Add IGEN directory when MIPS
730         target.
731         * configure: Regenerate.
732         
733 Fri Sep 12 13:10:31 1997  Andrew Cagney  <cagney@b1.cygnus.com>
734
735         * configure.in (extra_subdirs): v850ea needs igen.
736         * configure: Re-generate.
737         
738 Mon Sep  1 16:48:23 1997  Andrew Cagney  <cagney@b1.cygnus.com>
739
740         * configure.in (testdir): When a testsuite directory, add that to
741         the list of confdirs.
742
743 Tue Aug 19 11:17:46 1997  Andrew Cagney  <cagney@b1.cygnus.com>
744
745         * configure.in (extra_subdirs): Enable igen ready for V850.
746
747 Tue Aug 26 15:14:48 1997  Andrew Cagney  <cagney@b1.cygnus.com>
748
749         * configure.in (w65-*-*, only_if_enabled): Set.
750         * configure: Re-generate.
751         
752 Mon Aug 25 16:26:53 1997  Andrew Cagney  <cagney@b1.cygnus.com>
753
754         * configure.in (sparc*-*-*, only_if_enabled): Set
755         only_if_enabled=yes.  Check only_if_enabled before enabling a
756         simulator.
757         * configure: Regenerate.
758         
759 Mon Aug 18 10:56:59 1997  Nick Clifton  <nickc@cygnus.com>
760
761         * configure.in (extra_subdirs): Add v850e target.
762
763 Mon Aug 18 10:56:59 1997  Nick Clifton  <nickc@cygnus.com>
764
765         * configure.in (extra_subdirs): Add v850ea target.
766
767 Fri Jul 25 11:40:47 1997  Doug Evans  <dje@canuck.cygnus.com>
768
769         * configure.in (sparc*-*-*): Don't build erc32.
770         * configure: Regenerate.
771
772 Thu Apr 24 00:47:20 1997  Doug Evans  <dje@canuck.cygnus.com>
773
774         * configure.in (m32r-*-*): New target.
775         * configure: Regenerate.
776
777         * Makefile.in (autoconf-common, autoconf-changelog): Change $* to $@.
778
779 Mon Apr 21 22:57:55 1997  Andrew Cagney  <cagney@b1.cygnus.com>
780
781         * Makefile.in (.NOEXPORT, MAKEOVERRIDES): Moved to end, BSD make
782         thought that .NOEXPORT was the default target.
783
784 Fri Apr 11 17:18:07 1997  Ian Lance Taylor  <ian@cygnus.com>
785
786         * Makefile.in (clean mostlyclean): Restore targets accidentally
787         deleted in earlier change.
788
789 Thu Apr  3 12:20:32 1997  Andrew Cagney  <cagney@kremvax.cygnus.com>
790
791         * Makefile.in (autoheader-common, autoheader-changelog,
792         autoheader-install): Perform autoheader in addition to autoconf.
793
794 Wed Apr  2 15:09:05 1997  Doug Evans  <dje@canuck.cygnus.com>
795
796         * Makefile.in (autoconf-install): New target.
797         (autoconf-changelog): Try different way to obtain user name.
798
799 Wed Apr  2 14:25:52 1997  Andrew Cagney  <cagney@kremvax.cygnus.com>
800
801         * Makefile.in (autoconf-changelog): New target, update
802         ChangeLog for all subdirectories - normally used after
803         autoconf-common target.
804
805 Wed Mar 19 14:26:21 1997  Andrew Cagney  <cagney@kremvax.cygnus.com>
806
807         * configure.in (extra_subdirs): Include testsuite for d30v.
808         * configure: Regenerate.
809         
810         * Makefile.in (RUNTEST, RUNTESTFLAGS): Borrow test rules from
811         ../gdb/Makefile.in
812         (check): New rules - drive the testsuite.
813
814 Mon Mar  3 13:01:00 1997  Jeffrey A Law  (law@cygnus.com)
815
816         * configure.in: Add mn10200 configure lines accidentally
817         removed.
818         * configure: Regenerated.
819
820 Wed Feb 19 10:34:20 1997  Andrew Cagney  <cagney@critters.cygnus.com>
821
822         * configure.in (extra_subdirs): Generalize common sub directory
823         into a list.
824         (extra_subdirs): For d30v add igen to the list to be built.
825
826 Sun Feb 16 16:37:47 1997  Andrew Cagney  <cagney@critters.cygnus.com>
827
828         * configure.in (d30v): New target.
829         * configure: Regenerated.
830         
831 Wed Feb 19 23:17:13 1997  Jeffrey A Law  (law@cygnus.com)
832
833         * configure.in: Don't require GCC to build the mn10200
834         simulator anymore.
835         * configure: Rebuilt.
836
837 Wed Feb  5 13:28:13 1997  Doug Evans  <dje@canuck.cygnus.com>
838
839         * configure.in: Don't configure any subdirs if no simulator
840         is being built.  Don't use erc32 for sparc64.
841         * configure: Regenerated.
842
843 Tue Feb  4 13:19:39 1997  Doug Evans  <dje@canuck.cygnus.com>
844
845         * Makefile.in (autoconf-common): New target.
846         * configure.in: Do configure common.
847         * configure: Regenerated.
848
849 Thu Jan 23 13:59:52 1997  Stu Grossman  (grossman@critters.cygnus.com)
850
851         * configure configure.in:  Don't configure common anymore.  Files
852         from common are now built in the individual simualtor directories.
853         This fixes problems with the WinGDB build procedure.
854
855 Mon Jan 13 13:16:42 1997  Jeffrey A Law  (law@cygnus.com)
856
857         * configure: Enable the mn10200 simulator.
858
859 Wed Nov 20 01:00:36 1996  Doug Evans  <dje@canuck.cygnus.com>
860
861         * configure.in (configdirs): Add common.
862         * configure: Regenerated.
863
864 Fri Nov  1 08:03:30 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
865
866         * configure.in (powerpc*-*-linux*): Treat like the other powerpc
867         system V based targets.
868         * configure: Regenerate.
869
870 Thu Oct 17 12:50:08 1996  Doug Evans  <dje@canuck.cygnus.com>
871
872         * configure.in (--enable-sim-powerpc): Delete.
873         (--enable-sim): Add.
874         * configure: Regenerated.
875
876 Fri Oct 11 21:13:43 1996  Jeffrey A Law  (law@cygnus.com)
877
878         * configure.in: Only build the V850 simulator if
879         we are using gcc.
880         * configure: Rebuild.
881
882 Sun Sep  8 17:22:50 1996  Ian Lance Taylor  <ian@cygnus.com>
883
884         * configure.in: Do build erc32 for DOS and Windows hosts.
885         * configure: Rebuild.
886
887 Wed Sep  4 18:11:27 1996  Stu Grossman  (grossman@critters.cygnus.com)
888
889         * Makefile.in erc32/Makefile.in:  Don't set srcroot.  This should
890         be inherited from the parent.  Remove INSTALL_XFORM and
891         INSTALL_XFORM1.  Make INSTALL be set from configure.
892
893 Wed Sep  4 15:49:16 1996  Ian Lance Taylor  <ian@cygnus.com>
894
895         * configure.in: Only build the MIPS simulator if we are using
896         gcc.
897         * configure: Rebuild.
898
899 Wed Aug 28 19:05:23 1996  Jeffrey A Law  (law@cygnus.com)
900
901         * configure.in (v850-*-*): Added V850 simulator.
902
903 Thu Aug  1 17:08:41 1996  Martin M. Hunt  <hunt@pizza.cygnus.com>
904
905         * configure.in (d10v-*-*): Added D10V simulator.
906
907 Wed Jun 26 12:33:57 1996  Jason Molenda  (crash@godzilla.cygnus.co.jp)
908
909         * Makefile.in (bindir, libdir, datadir, mandir, infodir, includedir,
910         INSTALL_PROGRAM, INSTALL_DATA): Use autoconf-set values.
911         (docdir): Removed.
912         * configure.in (AC_PREREQ): autoconf 2.5 or higher.
913         (AC_PROG_INSTALL): Added.
914         * configure: Rebuilt.
915
916 Mon Jun 24 14:18:26 1996  Ian Lance Taylor  <ian@cygnus.com>
917
918         * configure.in: Only configure erc32 if using gcc.
919         * configure: Rebuild.
920
921 Tue Jun  4 09:24:21 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
922
923         * configure.in (sim_target): Build PowerPC simulator for powerpc
924         System V.4, Solaris, and Elf targets.
925         * configure: Regenerate with autoconf 2.10.
926
927 Wed May 22 12:10:49 1996  Rob Savoye  <rob@chinadoll>
928
929         * configure.in: Only built erc32 simulator on Unix hosts as it
930         uses pseudo ttys.
931         * configure: Regenerated with autoconf 2.8.
932
933 Sun May 19 20:20:40 1996  Rob Savoye  <rob@chinadoll.cygnus.com>
934
935         * erc32: Sparc simulator from the ESA.
936
937 Sun Apr  7 21:00:09 1996  Fred Fish  <fnf@cygnus.com>
938
939         From: Miles Bader  <miles@gnu.ai.mit.edu>
940         * configure.in: Use AC_CHECK_TOOL to find AR & RANLIB.
941         * configure: Regenerate using autoconf.
942
943 Thu Feb 22 11:31:50 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
944
945         * Makefile.in (install): Fix typo.
946
947 Wed Feb 21 11:59:57 1996  Ian Lance Taylor  <ian@cygnus.com>
948
949         * configure: Regenerate with autoconf 2.7.
950
951         * Makefile.in (all): Simplify.
952         (clean, mostlyclean): SUBDIRS may contain whitespace; fix the loop
953         as in the all target.
954         (distclean, maintainer-clean, realclean): Likewise.
955         (install): Likewise.
956
957 Thu Feb 15 18:37:00 1996  Fred Fish  <fnf@cygnus.com>
958
959         * Makefile.in (all): Remove extra '\' char from shell script.
960
961 Wed Feb 14 16:43:59 1996  Mike Meissner  <meissner@tiktok.cygnus.com>
962
963         * Makefile.in (all): Avoid a for loop with zero elements, even if
964         the loop will not be executed because of an if statement.
965
966 Wed Jan 31 21:48:34 1996  Fred Fish  <fnf@cygnus.com>
967
968         * Makefile.in (install): Add missing semicolon in "fi \".
969
970 Thu Nov  9 16:10:56 1995  Michael Meissner  <meissner@tiktok.cygnus.com>
971
972         * Makefile.in (AR, CC, CFLAGS, CC_FOR_BUILD, RANLIB): Pick up
973         defaults from configure.
974
975         * configure.in: Pick up AR, CC, CFLAGS, CC_FOR_BUILD, RANLIB using
976         configure defaults.
977         (powerpc*-*-eabi*): Build simulator for all powerpc eabi targets
978         if either --enable-sim-powerpc is used, or the host compiler is
979         GCC.
980
981 Wed Nov  8 15:46:49 1995  James G. Smith  <jsmith@pasanda.cygnus.co.uk>
982
983         * configure.in (mips*-*-*): Added "mips" simulator target.
984         * configure: Re-generated.
985
986 Tue Oct 10 11:08:20 1995  Fred Fish  <fnf@cygnus.com>
987
988         * Makefile.in (BISON): Remove macro.
989         (FLAGS_TO_PASS): Remove BISON.
990
991 Sun Oct  8 04:26:27 1995  Peter Schauer  (pes@regent.e-technik.tu-muenchen.de)
992
993         * configure.in:  Explicitly `exit 0' for broken shells.
994         * configure:  Rebuilt.
995
996 Fri Oct  6 12:03:27 1995  Jim Wilson  <wilson@chestnut.cygnus.com>
997
998         * common/run.c (main): Initialize the callbacks.
999
1000 Wed Sep 20 13:34:50 1995  Ian Lance Taylor  <ian@cygnus.com>
1001
1002         * Makefile.in (maintainer-clean): New synonym for realclean.
1003
1004 Fri Aug 25 11:53:43 1995  Michael Meissner  <meissner@tiktok.cygnus.com>
1005
1006         * configure.in (powerpc*-*-eabisim*): Only build the simulator if
1007         the target is powerpc*-*-eabisim*, since it requires GCC to build.
1008
1009 Mon Aug 21 17:53:48 1995  Michael Meissner  <meissner@tiktok.cygnus.com>
1010
1011         * configure.in (powerpc{,le}-*-*): Add psim from Andrew Cagney
1012         <cagney@highland.com.au>.
1013         * configure: Regnerate from configure.in.
1014
1015 Thu Aug  3 10:45:37 1995  Fred Fish  <fnf@cygnus.com>
1016
1017         * Update all FSF addresses except those in COPYING* files.
1018
1019 Thu Jul 20 15:17:29 1995  Fred Fish  <fnf@cygnus.com>
1020
1021         * Makefile.in (CC_FOR_BUILD):  Define default and arrange to pass
1022         submakes either default or passed in value.
1023
1024 Wed Jul  5 14:32:54 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
1025
1026         * Makefile.in (all, clean, distclean, mostlyclean, realclean,
1027           install): Changed targets so that they descend all
1028           subdirectories in $(SUBDIRS).
1029           (*-all, *-clean, *-install): Removed targets.
1030
1031         * configure.in: Don't bother with target makefile fragments, they
1032           are no longer needed.
1033         * configure: regenerated.
1034
1035         * Makefile.in, configure.in: converted to autoconf.
1036         * configure: New file, generated with autconf 2.4.
1037
1038 Wed May 24 14:48:46 1995  Steve Chamberlain  <sac@slash.cygnus.com>
1039
1040         * Makefile.in: Support ARM.
1041         * configure.in: Ditto.
1042
1043 Sun Jan 15 16:53:47 1995  Steve Chamberlain  <sac@splat>
1044
1045         * Makefile.in: Support W65.
1046         * configure.in: Ditto.
1047
1048 Sun Mar 13 09:27:50 1994  Jim Kingdon  (kingdon@lioth.cygnus.com)
1049
1050         * Makefile.in: Add TAGS target.
1051
1052 Mon Sep 13 12:47:15 1993  K. Richard Pixley  (rich@sendai.cygnus.com)
1053
1054         * Makefile.in (all-z8k, install-z8k, clean-z8k, all-h8300,
1055           install-h8300, clean-h8300, all-h8500, install-h8500,
1056           clean-h8500, all-sh, install-sh, clean-sh): do not echo
1057           recursion lines.
1058
1059 Wed Jun 30 14:12:05 1993  david d `zoo' zuhn  (zoo at poseidon.cygnus.com)
1060
1061         * Makefile.in: remove endian.h trace from h8500
1062
1063 Sun Jun 13 13:08:58 1993  Jim Kingdon  (kingdon@cygnus.com)
1064
1065         * Makefile.in: Add distclean, realclean, and mostlyclean targets.
1066
1067 Fri May 21 11:21:16 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
1068
1069         * Makefile.in: make all of the all-* target (except all-nothing)
1070         depend on endian.h, so that if we're not building a simulator, we
1071         don't built endian
1072
1073 Fri May 21 10:55:06 1993  Ian Lance Taylor  (ian@cygnus.com)
1074
1075         * Makefile.in (check, installcheck): Added dummy targets.
1076
1077 Mon May  3 21:39:43 1993  Fred Fish  (fnf@cygnus.com)
1078
1079         * Makefile.in (endian): Find endian.c in $(srcdir), and also
1080         explicitly make it, since some makes apparently don't work with
1081         VPATH and .c to executable rules (SunOS make for example).
1082
1083 Mon May  3 08:29:01 1993  Steve Chamberlain  (sac@thepub.cygnus.com)
1084
1085         * Makefile.in (endian): Add explicit rule for broken makes.
1086
1087 Mon Mar 15 15:47:53 1993  Ian Lance Taylor  (ian@cygnus.com)
1088
1089         * Makefile.in (info, install-info): New targets.
1090         (DO_INSTALL): Renamed from INSTALL, which is overridden by the top
1091         level Makefile.
1092
1093 Wed Feb 10 20:12:27 1993  K. Richard Pixley  (rich@ok.cygnus.com)
1094
1095         * Makefile.in (endian.h): build endian.h via a temporary file so
1096           that we don't leave an incomplete file lying around on
1097           interrupted builds.
1098           (clean): remove endian, e.h, and endian.h.
1099
1100 Mon Feb  8 11:46:06 1993  Steve Chamberlain  (sac@thepub.cygnus.com)
1101
1102         * Makefile.in, configure.in: if target isn't supported, build a
1103         harmless makefile.
1104
1105