source: rtems/c/src/lib/libbsp/unix/posix/ChangeLog @ 6b2b37d2

4.104.115
Last change on this file since 6b2b37d2 was 6b2b37d2, checked in by Ralf Corsepius <ralf.corsepius@…>, on 09/15/09 at 14:45:47

2009-09-15 Ralf Corsépius <ralf.corsepius@…>

  • configure.ac: Remove RTEMS_BSP_BOOTCARD_OPTIONS.
  • Property mode set to 100644
File size: 16.9 KB
Line 
12009-09-15      Ralf Corsépius <ralf.corsepius@rtems.org>
2
3        * configure.ac: Remove RTEMS_BSP_BOOTCARD_OPTIONS.
4
5 2009-07-16     Joel Sherrill <joel.sherrill@oarcorp.com>
6
7        * configure.ac: Rename BSP_BOOTCARD_OPTIONS to
8        RTEMS_BSP_BOOTCARD_OPTIONS. Add RTEMS_BSP_CLEANUP_OPTIONS so all BSPs
9        have the same options.
10
112009-07-03      Joel Sherrill <joel.sherrill@oarcorp.com>
12
13        * Makefile.am: Switch to shared routine.
14        * startup/setvec.c: Removed.
15
162009-05-08      Joel Sherrill <joel.sherrill@oarcorp.com>
17
18        * startup/bspgetworkarea.c: Switch from ssize_t to uintptr_t for
19        bsp_get_work_area() since the work area is larger than a single
20        allocatable object.
21
222009-04-28      Chris Johns <chrisj@rtems.org>
23
24        * startup/main.c: Update for boot_card command line change.
25
262008-12-01      Joel Sherrill <joel.sherrill@OARcorp.com>
27
28        * bsp_specs, startup/bspgetworkarea.c: Links hello again.
29
302008-10-02      Joel Sherrill <joel.sherrill@oarcorp.com>
31
32        * startup/bspgetworkarea.c: Change size_t to ssize_t on
33        bsp_get_work_area(). On 16-bit architectures, size_t can be 16-bits
34        which would limit the work area to 64K.
35
362008-09-30      Ralf Corsépius <ralf.corsepius@rtems.org>
37
38        * Makefile.am: Eliminate bsp.am. Cleanup.
39
402008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
41
42        * Makefile.am: Eliminate *_SOURCES.
43
442008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
45
46        * Makefile.am: Remove noinst_PROGRAMS (Unused).
47
482008-09-26      Ralf Corsépius <ralf.corsepius@rtems.org>
49
50        * Makefile.am: Cleanup ../../shared/include/bootcard.h handling.
51
522008-09-23      Joel Sherrill <joel.sherrill@oarcorp.com>
53
54        * configure.ac: Make letting boot_card() handle work area allocation
55        mandatory. Rename RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION to
56        BSP_BOOTCARD_OPTIONS.
57
582008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
59
60        * include/bsp.h: Remove prototypes of routines in bootcard.h.
61
622008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
63
64        * Makefile.am, configure.ac, startup/bspstart.c: Add
65        bsp_get_work_area() implementation and use more of the BSP
66        Initialization Framework.
67        * startup/bspgetworkarea.c, startup/bsppost.c: New files.
68
692008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
70
71        * include/bsp.h: Remove unnecessary boilerplate comments.
72
732008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
74
75        * clock/clock.c: Remove unnecessary includes of rtems/libcsupport.h and
76        rtems/libio.h.
77
782008-09-10      Joel Sherrill <joel.sherrill@oarcorp.com>
79
80        * include/bsp.h: Review of all bsp_cleanup() implementations. In this
81        phase, all prototypes were removed from bsp.h and empty
82        implementations were removed and made to use the shared stub.
83
842008-09-05      Joel Sherrill <joel.sherrill@OARcorp.com>
85
86        * clock/clock.c: The Shared Memory Driver no longer requires the
87        special IOCTL in Clock_control. This was a hack which has existed
88        since before the Classic API Timer Manager was implemented. All
89        implementations of and references to Clock_control were removed.
90
912008-09-05      Ralf Corsépius <ralf.corsepius@rtems.org>
92
93        * timer/timer.c: Convert to "bool".
94
952008-08-31      Joel Sherrill <joel.sherrill@oarcorp.com>
96
97        * timer/timer.c: Eliminate empty function from every benchmark timer
98        driver. Fix spelling.
99
1002008-08-31      Joel Sherrill <joel.sherrill@oarcorp.com>
101
102        * timer/timer.c: Rename timer driver methods to follow RTEMS
103        programming conventions.
104
1052008-05-15      Joel Sherrill <joel.sherrill@OARcorp.com>
106
107        * startup/bspstart.c: Add capability for bootcard.c BSP Initialization
108        Framework to ask the BSP where it has memory for the RTEMS Workspace
109        and C Program Heap. These collectively are referred to as work area.
110        If the BSP supports this, then it does not have to include code to
111        split the available memory between the two areas. This reduces the
112        amount of code in the BSP specific bspstart.c file. Additionally, the
113        shared framework can initialize the C Library, call
114        rtems_debug_enable(), and dirty the work area memory. Until most/all
115        BSPs support this new capability, if the BSP supports this, it should
116        call RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac.
117        When the transition is complete, this autoconf macro can be removed.
118
1192008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
120
121        * Makefile.am: Rework to avoid .rel files.
122
1232008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
124
125        * startup/bspstart.c: Refactored and renamed initialization routines to
126        rtems_initialize_data_structures, rtems_initialize_before_drivers,
127        rtems_initialize_device_drivers, and
128        rtems_initialize_start_multitasking. This opened the sequence up so
129        that bootcard() could provide a more robust and flexible framework
130        which is easier to explain and understand. This also lays the
131        groundwork for sharing the division of available memory between the
132        RTEMS workspace and heap and the C library initialization across all
133        BSPs.
134
1352007-12-12      Joel Sherrill <joel.sherrill@OARcorp.com>
136
137        * Makefile.am, startup/bspstart.c: Links and runs again.
138        * console/console-io.c: New file.
139
1402007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
141
142        * clock/clock.c, include/bsp.h, startup/bspstart.c,
143        startup/rtems-ctor.cc: Eliminate copies of the Configuration Table.
144        Use the RTEMS provided accessor macros to obtain configuration
145        fields.
146
1472007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
148
149        * include/bsp.h, startup/bspstart.c: Move interrupt_stack_size field
150        from CPU Table to Configuration Table. Eliminate CPU Table from all
151        ports. Delete references to CPU Table in all forms.
152
1532007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
154
155        * startup/bspstart.c: Moved most of the remaining CPU Table fields to
156        the Configuration Table. This included pretasking_hook,
157        predriver_hook, postdriver_hook, idle_task, do_zero_of_workspace,
158        extra_mpci_receive_server_stack, stack_allocate_hook, and
159        stack_free_hook. As a side-effect of this effort some multiprocessing
160        code was made conditional and some style clean up occurred.
161
1622007-08-07      Joel Sherrill <joel.sherrill@OARcorp.com>
163
164        * preinstall.am: Save changes again to make tagger happy.
165
1662007-07-31      Joel Sherrill <joel.sherrill@OARcorp.com>
167
168        * Makefile.am, preinstall.am: You need main() to link all applications.
169        There is no C++ specific way to link currently.
170
1712007-07-24      Joel Sherrill <joel.sherrill@OARcorp.com>
172
173        * Makefile.am, startup/main.c: Now can link with C compiler and not
174        require C++ compiler to link. The file rtems-ctor.cc is not being
175        built but if there is a need for C++ code to run on this BSP, then it
176        will have to be addressed. The simplest solution which might work is
177        to check the RTEMS system state before calling bsp_start() in main().
178
1792007-05-07      Ralf Corsépius <ralf.corsepius@rtems.org>
180
181        * startup/bspstart.c: Use uintptr_t for address arithmetics.
182        * bsp_specs: Remove -qrtems_debug.
183
1842006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
185
186        * configure.ac: New BUG-REPORT address.
187
1882006-10-30      Joel Sherrill <joel@OARcorp.com>
189
190        * startup/rtems-ctor.cc: Conditionally disable non-GCC code.
191
1922006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
193
194        * configure.ac: Require autoconf-2.60. Require automake-1.10.
195
1962006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
197
198        * Makefile.am: Add preinstall.am.
199
2002005-05-26      Ralf Corsepius <ralf.corsepius@rtems.org>
201
202        * include/bsp.h: New header guard.
203
2042005-01-22      Ralf Corsepius <ralf.corsepius@rtems.org>
205
206        * Makefile.am: Merge rtems-ctor.o into libbsp.a.
207        Fix building rtems-ctor.o and no-ctor.o.
208
2092005-01-07      Ralf Corsepius <ralf.corsepius@rtems.org>
210
211        * Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
212
2132005-01-02      Ralf Corsepius <ralf.corsepius@rtems.org>
214
215        * Makefile.am: Remove build-variant support.
216
2172004-09-24      Ralf Corsepius <ralf_corsepius@rtems.org>
218
219        * configure.ac: Require automake > 1.9.
220
2212004-04-23      Ralf Corsepius <ralf_corsepius@rtems.org>
222
223        PR 610/bsps
224        * Makefile.am: Add include/tm27.h, Cosmetics.
225        * include/tm27.h: Final cosmetics.
226
2272004-04-22      Ralf Corsepius <ralf_corsepius@rtems.org>
228
229        * include/bsp.h: Split out tmtest27 support.
230        * include/tm27.h: New.
231
2322004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
233
234        PR 613/bsps
235        * include/bsp.h: Remove MAX_LONG_TEST_DURATION.
236
2372004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
238
239        PR 614/bsps
240        * include/bsp.h: Remove MAX_SHORT_TEST_DURATION (Unused).
241
2422004-04-08      Ralf Corsepius <ralf_corsepius@rtems.org>
243
244        * Makefile.am: Build main.o for !HAS_CXX.
245        Set EXEEXT = <empty> (Workaround to a bug in automake).
246
2472004-04-01      Ralf Corsepius <ralf_corsepius@rtems.org>
248
249        * include/bsp.h: Include <rtems/clockdrv.h> instead of <clockdrv.h>.
250        * startup/exit.c: Include <rtems/clockdrv.h> instead of <clockdrv.h>.
251        * include/bsp.h: Include <rtems/console.h> instead of <console.h>.
252        * include/bsp.h: Include <rtems/iosupp.h> instead of <iosupp.h>.
253
2542004-03-31      Ralf Corsepius <ralf_corsepius@rtems.org>
255
256        * clock/clock.c, include/bsp.h, shmsupp/cause_intr.c,
257        shmsupp/getcfg.c, shmsupp/lock.c, startup/bspstart.c: Convert to
258        using c99 fixed size types.
259
2602004-02-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
261
262        * Makefile.am: Reflect changes to bsp.am.
263        Preinstall dist_project_lib*.
264
2652004-02-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
266
267        * Makefile.am: Reflect changes to bsp.am.
268
2692004-02-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
270
271        * configure.ac: Remove AM_CONDITIONAL(HAS_MP).
272
2732004-01-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
274
275        * Makefile.am: Merge-in clock/Makefile.am, console/Makefile.am,
276        shmsupp/Makefile.am, startup/Makefile.am, timer/Makefile.am,
277        wrapup/Makefile.am. Use automake compilation rules.
278        * clock/Makefile.am, console/Makefile.am, shmsupp/Makefile.am,
279        startup/Makefile.am, timer/Makefile.am, wrapup/Makefile.am: Remove.
280        * configure.ac: Reflect changes above.
281
2822004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
283
284        * configure.ac: Add nostdinc to AUTOMAKE_OPTIONS.
285        Add RTEMS_PROG_CCAS.
286
2872004-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
288
289        * Makefile.am: Add PREINSTALL_DIRS.
290
2912004-01-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
292
293        * startup/Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES.
294        Add PRE/TMPINSTALL_FILES to CLEANFILES.
295
2962004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
297
298        * wrapup/Makefile.am: Eliminate $(LIB).
299        Use noinst_DATA to trigger building libbsp.a.
300
3012003-12-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
302
303        * wrapup/Makefile.am: Remove GENERIC_FILES.
304
3052003-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
306
307        * startup/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
308
3092003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
310
311        * startup/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
312
3132003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
314
315        * configure.ac: Require automake >= 1.8, autoconf >= 2.59.
316
3172003-12-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
318
319        * startup/Makefile.am: Add custom compilation rule for
320        rtems-ctor$(LIB_VARIANT).$(OBJEXT).
321
3222003-12-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
323
324        * startup/Makefile.am: Misc cleanups and fixes.
325        * wrapup/Makefile.am: Misc cleanups and fixes.
326
3272003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
328
329        * Makefile.am: Add preinstallation dirstamp support.
330        * clock/Makefile.am: Cosmetics.
331        * console/Makefile.am: Cosmetics.
332        * shmsupp/Makefile.am: Cosmetics.
333        * startup/Makefile.am: Cosmetics.
334        * timer/Makefile.am: Cosmetics.
335        * wrapup/Makefile.am: Cosmetics.
336
3372003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
338
339        * clock/Makefile.am: Remove all-local: $(ARCH).
340        * console/Makefile.am: Remove all-local: $(ARCH).
341        * shmsupp/Makefile.am: Remove all-local: $(ARCH).
342        * startup/Makefile.am: Remove all-local: $(ARCH).
343        * timer/Makefile.am: Remove all-local: $(ARCH).
344        * wrapup/Makefile.am: Remove all-local: $(ARCH).
345
3462003-09-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
347
348        * Makefile.am: Merge-in include/Makefile.am.
349        Reflect changes to bsp.am.
350        * include/Makefile.am: Remove.
351        * configure.ac: Reflect changes above.
352
3532003-09-26      Joel Sherrill <joel@OARcorp.com>
354
355        * timer/timer.c: Obsoleting HP PA-RISC port and removing all
356        references.
357
3582003-09-04      Joel Sherrill <joel@OARcorp.com>
359
360        * clock/clock.c, console/console.c, include/bsp.h, shmsupp/addrconv.c,
361        shmsupp/cause_intr.c, shmsupp/getcfg.c, shmsupp/lock.c,
362        shmsupp/mpisr.c, startup/bspclean.c, startup/bspstart.c,
363        startup/exit.c, startup/setvec.c, timer/timer.c: URL for license
364        changed.
365
3662003-08-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
367
368        * Makefile.am: Reflect having moved aclocal/.
369
3702003-08-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
371
372        * Makefile.am: Reflect having moved automake/.
373        * clock/Makefile.am: Reflect having moved automake/.
374        * console/Makefile.am: Reflect having moved automake/.
375        * include/Makefile.am: Reflect having moved automake/.
376        * shmsupp/Makefile.am: Reflect having moved automake/.
377        * startup/Makefile.am: Reflect having moved automake/.
378        * timer/Makefile.am: Reflect having moved automake/.
379        * wrapup/Makefile.am: Reflect having moved automake/.
380
3812003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
382
383        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
384
3852003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
386
387        * configure.ac: Remove AC_CONFIG_AUX_DIR.
388
3892003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
390
391        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
392
3932003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
394
395        * configure.ac: AC_PREREQ(2.57).
396
3972003-01-15      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
398
399        * configure.ac: Add BSPOPTS (WORKSPACE_MB, HEAPSPACE_MB).
400        * clock/Makefile.am: Don't include @RTEMS_BSP@.cfg.
401        * console/Makefile.am: Don't include @RTEMS_BSP@.cfg.
402        * shmsupp/Makefile.am: Don't include @RTEMS_BSP@.cfg.
403        * startup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
404        * timer/Makefile.am: Don't include @RTEMS_BSP@.cfg.
405
4062002-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
407
408        * wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
409
4102002-11-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
411
412        * configure.ac: Remove RTEMS_OUTPUT_BUILD_SUBDIRS. Cosmetical
413        changes.
414
4152002-11-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
416
417        * configure.ac: Unconditionally check for CXX (Hack to bug in
418        autoconf > 2.54).
419
4202002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
421
422        * .cvsignore: Reformat.
423        Add autom4te*cache.
424        Remove autom4te.cache.
425
4262002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
427
428        * clock/Makefile.am: Use .$(OBJEXT) instead of .o.
429        * console/Makefile.am: Use .$(OBJEXT) instead of .o.
430        * shmsupp/Makefile.am: Use .$(OBJEXT) instead of .o.
431        * startup/Makefile.am: Use .$(OBJEXT) instead of .o.
432        * timer/Makefile.am: Use .$(OBJEXT) instead of .o.
433        * wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
434
4352002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
436
437        * wrapup/Makefile.am: Eliminate TMPINSTALL_FILES.
438        Remove $(OBJS) from all-local.
439
4402002-06-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
441
442        * wrapup/Makefile.am: Remove preinstallation of libbsp.a,
443
4442002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
445
446        * configure.ac:
447        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
448        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
449        * clock/Makefile.am: Remove AUTOMAKE_OPTIONS.
450        * Makefile.am: Remove AUTOMAKE_OPTIONS.
451        * console/Makefile.am: Remove AUTOMAKE_OPTIONS.
452        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
453        * shmsupp/Makefile.am: Remove AUTOMAKE_OPTIONS.
454        * startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
455        * timer/Makefile.am: Remove AUTOMAKE_OPTIONS.
456        * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
457
4582001-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
459
460        * configure.ac: Introduce RTEMS_BSP_CONFIGURE.
461
4622001-11-07      Joel Sherrill <joel@OARcorp.com>
463
464        * startup/Makefile.am: Do NOT use the standard bootcard.c.
465        NOTE: With this fix all test including the mptest ran as expected.
466
4672001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
468
469        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
470        * configure.in: Remove.
471        * configure.ac: New file, generated from configure.in by autoupdate.
472
4732001-09-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
474
475        * include/Makefile.am: Use 'CLEANFILES ='.
476        * include/Makefile.am: Use 'TMPINSTALL_FILES ='.
477
4782001-08-17      Joel Sherrill <joel@OARcorp.com>
479
480        * include/Makefile.am: Include coverhd.h so tmtests will compile.
481
4822001-05-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
483
484        * configure.in: Add bspopts.h.
485        * include/.cvsignore: Add bspopts.h*, stamp-h*, coverhd.h.
486        * include/Makefile.am: Use *_HEADERS instead of *H_FILES.
487        * include/bsp.h: Include bspopts.h.
488
4892001-05-10      Ralf Corsepius  <corsepiu@faw.uni-ulm.de>
490
491        * configure.in: Use RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm]).
492
4932000-11-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
494
495        * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
496
4972000-11-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
498
499        * Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal.
500
5012000-11-01      Joel Sherrill <joel@OARcorp.com>
502
503        * startup/bspstart.c: assoc.h, error.h, libio_.h, libio.h,
504        and libcsupport.h moved from libc to lib/include/rtems and
505        now must be referenced as <rtems/XXX.h>.   Header file order
506        was cleaned up while doing this.
507
5082000-10-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
509
510        * bsp_specs: Add qnolinkcmds.
511
5122000-10-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
513
514        * Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
515        Switch to GNU canonicalization.
516
5172000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
518
519        * clock/Makefile.am, console/Makefile.am, shmsupp/Makefile.am,
520        startup/Makefile.am, timer/Makefile.am, wrapup/Makefile.am: Include
521        compile.am
522
5232000-08-10      Joel Sherrill <joel@OARcorp.com>
524
525        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.