diff --git a/c/src/lib/libbsp/h8300/h8sim/ChangeLog b/c/src/lib/libbsp/h8300/h8sim/ChangeLog index 9d22c9c558..ae2e3406bc 100644 --- a/c/src/lib/libbsp/h8300/h8sim/ChangeLog +++ b/c/src/lib/libbsp/h8300/h8sim/ChangeLog @@ -1,3 +1,7 @@ +2005-03-07 Joel Sherrill + + * Makefile.am: Add timerstub so more tests link. + 2005-03-07 Joel Sherrill * startup/linkcmds: Hacked so there is enough memory to link pppd.exe. diff --git a/c/src/lib/libbsp/h8300/h8sim/Makefile.am b/c/src/lib/libbsp/h8300/h8sim/Makefile.am index b4b6e3cabb..b9ca86ea09 100644 --- a/c/src/lib/libbsp/h8300/h8sim/Makefile.am +++ b/c/src/lib/libbsp/h8300/h8sim/Makefile.am @@ -44,9 +44,14 @@ console_rel_SOURCES = ../../shared/console-polled.c console/console-io.c console_rel_CPPFLAGS = $(AM_CPPFLAGS) console_rel_LDFLAGS = $(RTEMS_RELLDFLAGS) +noinst_PROGRAMS += timer.rel +timer_rel_SOURCES = ../../shared/timerstub.c +timer_rel_CPPFLAGS = $(AM_CPPFLAGS) +timer_rel_LDFLAGS = $(RTEMS_RELLDFLAGS) + noinst_LIBRARIES = libbsp.a libbsp_a_SOURCES = -libbsp_a_LIBADD = startup.rel clock.rel console.rel +libbsp_a_LIBADD = startup.rel clock.rel console.rel timer.rel all-local: $(PREINSTALL_FILES) $(TMPINSTALL_FILES)