source: rtems/c/src/lib/libbsp/c4x/c4xsim/ChangeLog @ 4ca704c

4.104.115
Last change on this file since 4ca704c was 4ca704c, checked in by Ralf Corsepius <ralf.corsepius@…>, on 09/29/08 at 14:07:47

2008-09-29 Ralf Corsépius <ralf.corsepius@…>

  • Makefile.am: Eliminate bsp.am. Build startup files as side-effect of building libbspstart.a, using automake-rules.
  • Property mode set to 100644
File size: 16.7 KB
Line 
12008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
2
3        * Makefile.am: Eliminate bsp.am. Build startup files as side-effect
4        of building libbspstart.a, using automake-rules.
5
62008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
7
8        * Makefile.am: Eliminate *_SOURCES.
9
102008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
11
12        * Makefile.am: Move noinst_LIBRARIES = libbsp.a before its
13        components.
14
152008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
16
17        * Makefile.am: Remove noinst_PROGRAMS (Unused).
18
192008-09-23      Joel Sherrill <joel.sherrill@oarcorp.com>
20
21        * configure.ac: Make letting boot_card() handle work area allocation
22        mandatory. Rename RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION to
23        BSP_BOOTCARD_OPTIONS.
24
252008-09-19      Joel Sherrill <joel.sherrill@oarcorp.com>
26
27        * Makefile.am, console/debugio.c: Split out bspstart contents. Use
28        shared stub for bsp_start.
29        * startup/bsppretaskinghook.c: New file.
30        * startup/bspstart.c: Removed.
31
322008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
33
34        * include/bsp.h: Remove unnecessary boilerplate comments.
35
362008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
37
38        * Makefile.am, startup/linkcmds: Use top level shared
39        bsp_get_work_area() implementation.
40        * startup/bspgetworkarea.c: Removed.
41
422008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
43
44        * clock/clock.c, startup/bspstart.c, startup/linkcmds: Add use of
45        bsp_get_work_area() in its own file and rely on BSP Framework to
46        perform more initialization.
47        * startup/bspgetworkarea.c: New file.
48
492008-09-10      Joel Sherrill <joel.sherrill@oarcorp.com>
50
51        * include/bsp.h: Review of all bsp_cleanup() implementations. In this
52        phase, all prototypes were removed from bsp.h and empty
53        implementations were removed and made to use the shared stub.
54
552008-09-05      Ralf Corsépius <ralf.corsepius@rtems.org>
56
57        * timer/timer.c: Convert to "bool".
58
592008-08-31      Joel Sherrill <joel.sherrill@oarcorp.com>
60
61        * timer/timer.c: Eliminate empty function from every benchmark timer
62        driver. Fix spelling.
63
642008-08-31      Joel Sherrill <joel.sherrill@oarcorp.com>
65
66        * timer/timer.c: Rename timer driver methods to follow RTEMS
67        programming conventions.
68
692008-05-15      Joel Sherrill <joel.sherrill@OARcorp.com>
70
71        * startup/bspstart.c: Add capability for bootcard.c BSP Initialization
72        Framework to ask the BSP where it has memory for the RTEMS Workspace
73        and C Program Heap. These collectively are referred to as work area.
74        If the BSP supports this, then it does not have to include code to
75        split the available memory between the two areas. This reduces the
76        amount of code in the BSP specific bspstart.c file. Additionally, the
77        shared framework can initialize the C Library, call
78        rtems_debug_enable(), and dirty the work area memory. Until most/all
79        BSPs support this new capability, if the BSP supports this, it should
80        call RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac.
81        When the transition is complete, this autoconf macro can be removed.
82
832008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
84
85        * Makefile.am: Rework to avoid .rel files.
86
872008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
88
89        * startup/bspstart.c: Refactored and renamed initialization routines to
90        rtems_initialize_data_structures, rtems_initialize_before_drivers,
91        rtems_initialize_device_drivers, and
92        rtems_initialize_start_multitasking. This opened the sequence up so
93        that bootcard() could provide a more robust and flexible framework
94        which is easier to explain and understand. This also lays the
95        groundwork for sharing the division of available memory between the
96        RTEMS workspace and heap and the C library initialization across all
97        BSPs.
98
992007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
100
101        * clock/clock.c, include/bsp.h, startup/bspstart.c: Eliminate copies of
102        the Configuration Table. Use the RTEMS provided accessor macros to
103        obtain configuration fields.
104
1052007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
106
107        * include/bsp.h, startup/bspstart.c: Move interrupt_stack_size field
108        from CPU Table to Configuration Table. Eliminate CPU Table from all
109        ports. Delete references to CPU Table in all forms.
110
1112007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
112
113        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
114        Table fields to the Configuration Table. This included
115        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
116        do_zero_of_workspace, extra_mpci_receive_server_stack,
117        stack_allocate_hook, and stack_free_hook. As a side-effect of this
118        effort some multiprocessing code was made conditional and some style
119        clean up occurred.
120
1212007-05-11      Ralf Corsépius <ralf.corsepius@rtems.org>
122
123        * clock/clock.c: include <tic4x/c4xio.h>.
124
1252007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
126
127        * bsp_specs: Remove qrtems_debug.
128
1292006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
130
131        * configure.ac: New BUG-REPORT address.
132
1332006-11-15      Joel Sherrill <joel@OARcorp.com>
134
135        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
136        file and simplified initialization.
137
1382006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
139
140        * Makefile.am: Remove superfluous -DASM.
141
1422006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
143
144        * configure.ac: Require autoconf-2.60. Require automake-1.10.
145
1462006-05-31      Joel Sherrill <joel@OARcorp.com>
147
148        * clock/clock.c: Switch to using shared clock driver shell.
149
1502006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
151
152        * Makefile.am: Add preinstall.am.
153
1542005-05-26      Ralf Corsepius <ralf.corsepius@rtems.org>
155
156        * include/bsp.h: New header guard.
157
1582005-02-02      Ralf Corsepius <ralf.corsepius@rtems.org>
159
160        * include/tm27.h, timer/timer.c: #include <rtems/tic4x/c4xio.h>
161        instead of <rtems/tic4x/c4xio.h>.
162
1632005-01-07      Ralf Corsepius <ralf.corsepius@rtems.org>
164
165        * Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
166
1672005-01-02      Ralf Corsepius <ralf.corsepius@rtems.org>
168
169        * Makefile.am: Remove build-variant support.
170
1712004-09-24      Ralf Corsepius <ralf_corsepius@rtems.org>
172
173        * configure.ac: Require automake > 1.9.
174
1752004-04-23      Ralf Corsepius <ralf_corsepius@rtems.org>
176
177        PR 610/bsps
178        * Makefile.am: Add include/tm27.h, Cosmetics.
179        * include/tm27.h: Final cosmetics.
180
1812004-04-22      Ralf Corsepius <ralf_corsepius@rtems.org>
182
183        * include/bsp.h: Split out tmtest27 support.
184        * include/tm27.h: New.
185
1862004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
187
188        PR 613/bsps
189        * include/bsp.h: Remove MAX_LONG_TEST_DURATION.
190
1912004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
192
193        PR 614/bsps
194        * include/bsp.h: Remove MAX_SHORT_TEST_DURATION (Unused).
195
1962004-04-02      Ralf Corsepius <ralf_corsepius@rtems.org>
197
198        * clock/clock.c, include/bsp.h, timer/timer.c: Include
199        <rtems/c4x/c4xio.h> instead of <c4xio.h>.
200
2012004-04-01      Ralf Corsepius <ralf_corsepius@rtems.org>
202
203        * include/bsp.h: Include <rtems/clockdrv.h> instead of <clockdrv.h>.
204        * include/bsp.h: Include <rtems/console.h> instead of <console.h>.
205        * include/bsp.h: Include <rtems/iosupp.h> instead of <iosupp.h>.
206
2072004-03-31      Ralf Corsepius <ralf_corsepius@rtems.org>
208
209        * clock/clock.c, include/bsp.h, startup/bspstart.c, timer/timer.c:
210        Convert to using c99 fixed size types.
211
2122004-02-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
213
214        * Makefile.am: Reflect changes to bsp.am.
215        Preinstall dist_project_lib*.
216
2172004-02-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
218
219        * Makefile.am: Reflect changes to bsp.am.
220
2212004-02-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
222
223        * Makefile.am: Reflect changes to bsp.am.
224
2252004-02-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
226
227        * Makefile.am: Use CPPASCOMPILE instead of CCASCOMPILE.
228
2292004-02-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
230
231        * Makefile.am: Pickup files from ../../c4x/shared instead of
232        ../shared. Reformat.
233
2342004-01-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
235
236        * Makefile.am: Merge-in clock/Makefile.am, console/Makefile.am,
237        start/Makefile.am, startup/Makefile.am, timer/Makefile.am,
238        wrapup/Makefile.am.
239        Use automake compilation rules.
240        * clock/Makefile.am, console/Makefile.am, start/Makefile.am,
241        startup/Makefile.am, timer/Makefile.am, wrapup/Makefile.am:
242        Remove.
243        * configure.ac: Reflect changes above.
244
2452004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
246
247        * configure.ac: Add nostdinc to AUTOMAKE_OPTIONS.
248        Add RTEMS_PROG_CCAS.
249
2502004-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
251
252        * Makefile.am: Add PREINSTALL_DIRS.
253
2542004-01-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
255
256        * Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES.
257        Add PRE/TMPINSTALL_FILES to CLEANFILES.
258        * start/Makefile.am: Ditto.
259        * startup/Makefile.am: Ditto.
260
2612004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
262
263        * wrapup/Makefile.am: Eliminate $(LIB).
264        Use noinst_DATA to trigger building libbsp.a.
265
2662003-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
267
268        * start/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
269        * startup/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
270
2712003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
272
273        * start/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
274        * startup/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
275
2762003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
277
278        * configure.ac: Require automake >= 1.8, autoconf >= 2.59.
279
2802003-12-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
281
282        * start/Makefile.am: Misc cleanups and fixes.
283        * startup/Makefile.am: Misc cleanups and fixes.
284        * wrapup/Makefile.am: Misc cleanups and fixes.
285
2862003-12-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
287
288        * Makefile.am: Add preinstallation dirstamp support.
289        * clock/Makefile.am: Cosmetics.
290        * console/Makefile.am: Cosmetics.
291        * startup/Makefile.am: Cosmetics.
292        * timer/Makefile.am: Cosmetics.
293        * wrapup/Makefile.am: Cosmetics.
294
2952003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
296
297        * clock/Makefile.am: Remove all-local: $(ARCH).
298        * console/Makefile.am: Remove all-local: $(ARCH).
299        * start/Makefile.am: Remove all-local: $(ARCH).
300        * startup/Makefile.am: Remove all-local: $(ARCH).
301        * timer/Makefile.am: Remove all-local: $(ARCH).
302        * wrapup/Makefile.am: Remove all-local: $(ARCH).
303
3042003-09-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
305
306        * Makefile.am: Merge-in include/Makefile.am.
307        Reflect changes to bsp.am.
308        * include/Makefile.am: Remove.
309        * configure.ac: Reflect changes above.
310
3112003-09-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
312
313        * bsp_specs: Remove *lib:.
314
3152003-09-04      Joel Sherrill <joel@OARcorp.com>
316
317        * clock/clock.c, console/console.c, console/consolereserveresources.c,
318        console/debugio.c, include/bsp.h, startup/bspstart.c,
319        startup/spurious.c, timer/timer.c: URL for license changed.
320
3212003-08-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
322
323        * Makefile.am: Reflect having moved aclocal/.
324
3252003-08-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
326
327        * Makefile.am: Reflect having moved automake/.
328        * clock/Makefile.am: Reflect having moved automake/.
329        * console/Makefile.am: Reflect having moved automake/.
330        * include/Makefile.am: Reflect having moved automake/.
331        * start/Makefile.am: Reflect having moved automake/.
332        * startup/Makefile.am: Reflect having moved automake/.
333        * timer/Makefile.am: Reflect having moved automake/.
334        * wrapup/Makefile.am: Reflect having moved automake/.
335
3362003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
337
338        PR 452/bsps
339        * startup/Makefile.am: Remove USE_INIT_FINI.
340
3412003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
342
343        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
344
3452003-08-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
346
347        PR 445/bsps
348        * bsp_specs: Remove -D__embedded__ -Asystem(embedded) from cpp.
349        Remove cpp, old_cpp (now unused).
350
3512003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
352
353        * configure.ac: Remove AC_CONFIG_AUX_DIR.
354
3552003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
356
357        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
358
3592003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
360
361        * configure.ac: AC_PREREQ(2.57).
362
3632003-01-20      Joel Sherrill <joel@OARcorp.com>
364
365        * startup/linkcmds: Add FreeBSD SYSCTL() sections for networking.
366
3672002-12-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
368
369        * clock/Makefile.am: Don't include @RTEMS_BSP@.cfg.
370        * console/Makefile.am: Don't include @RTEMS_BSP@.cfg.
371        * start/Makefile.am: Don't include @RTEMS_BSP@.cfg.
372        * startup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
373        * timer/Makefile.am: Don't include @RTEMS_BSP@.cfg.
374
3752002-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
376
377        * clock/Makefile.am: Don't include @RTEMS_BSP@.cfg.
378        * console/Makefile.am: Don't include @RTEMS_BSP@.cfg.
379        * start/Makefile.am: Don't include @RTEMS_BSP@.cfg.
380        * startup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
381        * timer/Makefile.am: Don't include @RTEMS_BSP@.cfg.
382
3832002-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
384
385        * start/Makefile.am: Use install-data-local to install startfile.
386
3872002-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
388
389        * wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
390
3912002-11-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
392
393        * configure.ac: Remove RTEMS_OUTPUT_BUILD_SUBDIRS. Cosmetical
394        changes.
395
3962002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
397
398        * .cvsignore: Reformat.
399        Add autom4te*cache.
400        Remove autom4te.cache.
401
4022002-09-14      Joel Sherrill <joel@OARcorp.com>
403
404        * clock/clock.c: Per PR257, remove reference to c3x_set_ie.
405        c4x variant should use c4x_set_iie().
406
4072002-08-21      Joel Sherrill <joel@OARcorp.com>
408
409        * bsp_specs: Added support for -nostdlibs.
410
4112002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
412
413        * clock/Makefile.am: Use .$(OBJEXT) instead of .o.
414        * console/Makefile.am: Use .$(OBJEXT) instead of .o.
415        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
416        * startup/Makefile.am: Use .$(OBJEXT) instead of .o.
417        * timer/Makefile.am: Use .$(OBJEXT) instead of .o.
418        * wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
419
4202002-07-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
421
422        * start/Makefile.am: Eliminate PGM.
423        Add bsplib_DATA = $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).o.
424
4252002-07-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
426
427        * startup/Makefile.am: Add bsplib_DATA = linkcmds.
428
4292002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
430
431        * wrapup/Makefile.am: Eliminate TMPINSTALL_FILES.
432        Remove $(OBJS) from all-local.
433
4342002-06-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
435
436        * wrapup/Makefile.am: Remove preinstallation of libbsp.a,
437
4382002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
439
440        * configure.ac:
441        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
442        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
443        * clock/Makefile.am: Remove AUTOMAKE_OPTIONS.
444        * Makefile.am: Remove AUTOMAKE_OPTIONS.
445        * console/Makefile.am: Remove AUTOMAKE_OPTIONS.
446        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
447        * start/Makefile.am: Remove AUTOMAKE_OPTIONS.
448        * startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
449        * timer/Makefile.am: Remove AUTOMAKE_OPTIONS.
450        * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
451
4522002-01-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
453
454        * startup/bspstart.c: Include rtems/bspIo.h instead of bspIo.h.
455        * startup/spurious.c: Include rtems/bspIo.h instead of bspIo.h.
456
4572001-12-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
458
459        * bsp_specs: Replace -lrtemsall with -lrtemsbsp -lrtemscpu,
460        replace -lrtemsall_g with -lrtemsbsp_g -lrtemscpu_g.
461
4622001-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
463
464        * configure.ac: Introduce RTEMS_BSP_CONFIGURE.
465
4662001-10-12      Joel Sherrill <joel@OARcorp.com>
467
468        * console/console.c: Fixed typo.
4692001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
470
471        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
472        * configure.in: Remove.
473        * configure.ac: New file, generated from configure.in by autoupdate.
474
4752001-09-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
476
477        * include/Makefile.am: Use 'CLEANFILES ='.
478        * include/Makefile.am: Use 'PREINSTALL_FILES ='.
479
4802001-05-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
481
482        * configure.in: Add bspopts.h, fix PACKAGE.
483        * include/.cvsignore: Add bspopts.h*, stamp-h*.
484        * include/Makefile.am: Use *_HEADERS instead of *H_FILES.
485        * include/bsp.h: Include bspopts.h.
486
4872001-05-10      Ralf Corsepius  <corsepiu@faw.uni-ulm.de>
488
489        * configure.in: Use RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm]).
490
4912000-12-06      Joel Sherrill <joel@OARcorp.com>
492
493        * console/consolereserveresources.c: Removed code NOT file (YET).
494
4952000-11-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
496
497        * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
498
4992000-11-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
500
501        * Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal.
502
5032000-11-01      Joel Sherrill <joel@OARcorp.com>
504
505        * startup/bspstart.c: assoc.h, error.h, libio_.h, libio.h,
506        and libcsupport.h moved from libc to lib/include/rtems and
507        now must be referenced as <rtems/XXX.h>.   Header file order
508        was cleaned up while doing this.
509
5102000-10-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
511
512        * configure.in, Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
513        Switch to GNU canonicalization.
514
5152000-09-22      Joel Sherrill <joel@OARcorp.com>
516
517        * startup/linkcmds: Use default object format to avoid name
518        changes in object format due to tool version changes.
519
5202000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
521
522        * clock/Makefile.am, console/Makefile.am, start/Makefile.am,
523        startup/Makefile.am, timer/Makefile.am, wrapup/Makefile.am:
524        Include compile.am
525
5262000-08-10      Joel Sherrill <joel@OARcorp.com>
527
528        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.