source: rtems/c/src/lib/libbsp/i960/rxgen960/wrapup/Makefile.am @ bc85fd5a

4.104.114.84.95
Last change on this file since bc85fd5a was bc85fd5a, checked in by Joel Sherrill <joel.sherrill@…>, on 07/11/00 at 19:31:04

Reworked score/cpu/i960 so it can be safely compiled multilib. All
routines and structures that require CPU model specific information
are now in libcpu. This required significant rework of the
score/cpu header files and the creation of multiple header files
and subdirectories in libcpu/i960.

  • Property mode set to 100644
File size: 1.0 KB
RevLine 
[df49c60]1##
[4e36a2f]2## $Id$
[df49c60]3##
[4e36a2f]4
5AUTOMAKE_OPTIONS = foreign 1.4
6
7include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
8include $(top_srcdir)/../../../../../../automake/lib.am
9
10if HAS_MP
11GENERIC_MP_REL_PIECES = shmdr
12endif
13GENERIC_PIECES += $(GENERIC_MP_REL_PIECES)
14
15if HAS_MP
16BSP_MP_O_PIECES = shmsupp
17endif
[df49c60]18BSP_PIECES = startup clock console timer $(BSP_MP_O_PIECES)
[4e36a2f]19
20# bummer; have to use $foreach since % pattern subst rules only replace 1x
21OBJS = $(foreach piece, $(BSP_PIECES), $(wildcard ../$(piece)/$(ARCH)/*.o)) \
[bc85fd5a]22  $(wildcard ../../../../libcpu/$(RTEMS_CPU)/$(RTEMS_CPU_MODEL)/$(ARCH)/*.o) \
23  $(foreach piece, $(GENERIC_PIECES), ../../../$(piece)/$(ARCH)/$(piece).rel)
[4e36a2f]24LIB = $(ARCH)/libbsp.a
25
26#
27# (OPTIONAL) Add local stuff here using +=
28#
29
30$(LIB): $(OBJS)
31        $(make-library)
32
33$(PROJECT_RELEASE)/lib/libbsp$(LIB_VARIANT).a: $(LIB)
34        $(INSTALL_DATA) $< $@
35
36TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/libbsp$(LIB_VARIANT).a
37
38all-local: $(ARCH) $(OBJS) $(LIB) $(TMPINSTALL_FILES)
39
40.PRECIOUS: $(LIB)
41
42include $(top_srcdir)/../../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.