2000-11-09 Joel Sherrill <joel@OARcorp.com>

* configure.in, Makefile.am, clock/Makefile.am, clock/.cvsignore,
	wrapup/Makefile.am: Added include of stub clock driver so ticker
	would link.
This commit is contained in:
Joel Sherrill
2000-11-09 14:26:25 +00:00
parent b6076b01db
commit 1938317448
5 changed files with 37 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
2000-11-09 Joel Sherrill <joel@OARcorp.com>
* configure.in, Makefile.am, clock/Makefile.am, clock/.cvsignore,
wrapup/Makefile.am: Added include of stub clock driver so ticker
would link.
2000-11-02 Ralf Corsepius <corsepiu@faw.uni-ulm.de>

View File

@@ -0,0 +1,2 @@
Makefile
Makefile.in

View File

@@ -0,0 +1,28 @@
##
## $Id$
##
AUTOMAKE_OPTIONS = foreign 1.4
VPATH = @srcdir@:@srcdir@/../../../shared
C_FILES = clock_driver_stub.c
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
OBJS = $(C_O_FILES)
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
include $(top_srcdir)/../../../../../../automake/compile.am
include $(top_srcdir)/../../../../../../automake/lib.am
#
# (OPTIONAL) Add local stuff here using +=
#
all-local: $(ARCH) $(OBJS)
.PRECIOUS:
EXTRA_DIST =
include $(top_srcdir)/../../../../../../automake/local.am

View File

@@ -24,6 +24,7 @@ RTEMS_PROJECT_ROOT
# Explicitly list all Makefiles here
AC_OUTPUT(
Makefile
clock/Makefile
console/Makefile
include/Makefile
start/Makefile

View File

@@ -4,7 +4,7 @@
AUTOMAKE_OPTIONS = foreign 1.4
BSP_FILES = startup console
BSP_FILES = startup clock console
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
include $(top_srcdir)/../../../../../../automake/compile.am