From 2d354ea6a562761a1417bed71dfe8e722ef16409 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Thu, 27 Jul 2000 06:17:44 +0000 Subject: Minor problems addressed with the merger and with the arm_bare_bsp. That BSP now has a stub clock driver so the tests can link even if they won't execute. A handful of Makefiles had to be updated and we had to account for printk.c being a shared file now. --- .../lib/libbsp/arm/arm_bare_bsp/clock/Makefile.am | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 c/src/lib/libbsp/arm/arm_bare_bsp/clock/Makefile.am (limited to 'c/src/lib/libbsp/arm/arm_bare_bsp/clock/Makefile.am') diff --git a/c/src/lib/libbsp/arm/arm_bare_bsp/clock/Makefile.am b/c/src/lib/libbsp/arm/arm_bare_bsp/clock/Makefile.am new file mode 100644 index 0000000000..7c33173275 --- /dev/null +++ b/c/src/lib/libbsp/arm/arm_bare_bsp/clock/Makefile.am @@ -0,0 +1,32 @@ +## +## $Id$ +## + +AUTOMAKE_OPTIONS = foreign 1.4 + +PGM = $(ARCH)/clock.rel + +C_FILES = clockdrv.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/lib.am + +# +# (OPTIONAL) Add local stuff here using += +# + +$(PGM): $(OBJS) + $(make-rel) + +# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile + +all-local: $(ARCH) $(OBJS) $(PGM) + +.PRECIOUS: $(PGM) + +EXTRA_DIST = ckinit.c + +include $(top_srcdir)/../../../../../../automake/local.am -- cgit v1.2.3