source: rtems/c/src/lib/libbsp/Makefile.in @ 7908ba5b

4.104.114.84.95
Last change on this file since 7908ba5b was bd5e4f3b, checked in by Joel Sherrill <joel.sherrill@…>, on 05/21/98 at 18:26:58

Added bare bsp from Chris Johns <cjohns@…>.

  • Property mode set to 100644
File size: 766 bytes
Line 
1#
2#  $Id$
3#
4
5@SET_MAKE@
6srcdir = @srcdir@
7VPATH = @srcdir@
8RTEMS_ROOT = @top_srcdir@
9PROJECT_ROOT = @PROJECT_ROOT@
10
11include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
12include $(RTEMS_ROOT)/make/directory.cfg
13
14# shmdr is a portable shared memory MPCI layer
15# We only build it if HAS_MP was defined
16MP_DRIVERS_yes_V = shmdr
17MP_DRIVERS = $(MP_DRIVERS_$(HAS_MP)_V)
18
19SUB_DIRS=$(MP_DRIVERS)
20
21# If we are building a "real" BSP, then we need to descend into the
22# appropriate CPU specific directory.  The bare BSP is a special
23# case which can be built for any CPU and it resides at the same
24# level as the CPUs.  If we are building the bare BSP, then descend
25# into that directory.
26
27ifeq ($(RTEMS_BSP),bare)
28SUB_DIRS += bare
29else
30SUB_DIRS += $(wildcard $(RTEMS_CPU))
31endif
Note: See TracBrowser for help on using the repository browser.