source: rtems/c/src/lib/libbsp/c4x/c4xsim/wrapup/Makefile.am @ 61ba9763

4.104.114.84.95
Last change on this file since 61ba9763 was 61ba9763, checked in by Joel Sherrill <joel.sherrill@…>, on 02/22/00 at 18:39:52

New port of RTEMS to TI C3x and C4x.

  • Property mode set to 100644
File size: 887 bytes
Line 
1##
2## $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6
7BSP_PIECES = startup console clock timer
8# pieces to pick up out of libcpu/sparc
9CPU_PIECES =
10
11# bummer; have to use $foreach since % pattern subst rules only replace 1x
12OBJS = $(foreach piece, $(BSP_PIECES), $(wildcard ../$(piece)/$(ARCH)/*.o)) \
13    $(foreach piece, $(CPU_PIECES), ../../../../libcpu/$(RTEMS_CPU)/$(piece)/$(ARCH)/$(piece).rel)
14LIB = $(ARCH)/libbsp.a
15
16include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
17include $(top_srcdir)/../../../../../../automake/lib.am
18
19#
20# (OPTIONAL) Add local stuff here using +=
21#
22
23$(LIB): $(OBJS)
24        $(make-library)
25
26$(PROJECT_RELEASE)/lib/libbsp$(LIB_VARIANT).a: $(LIB)
27        $(INSTALL_DATA) $< $@
28
29TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/libbsp$(LIB_VARIANT).a
30
31all-local: $(ARCH) $(OBJS) $(LIB) $(TMPINSTALL_FILES)
32
33.PRECIOUS: $(LIB)
34
35include $(top_srcdir)/../../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.