4.104.114.84.95
Last change
on this file since 9e3e2d6 was
9e3e2d6,
checked in by Joel Sherrill <joel.sherrill@…>, on 06/15/00 at 13:11:56
|
Patch rtems-rc-20000615-3-cvs.diff from Ralf Corsepius
<corsepiu@…> so these BSPs pick up the
components they need from libcpu.
|
-
Property mode set to
100644
|
File size:
1.1 KB
|
Line | |
---|
1 | ## |
---|
2 | ## $Id$ |
---|
3 | ## |
---|
4 | |
---|
5 | AUTOMAKE_OPTIONS = foreign 1.4 |
---|
6 | |
---|
7 | # We only build the networking device driver if HAS_NETWORKING was defined |
---|
8 | if HAS_NETWORKING |
---|
9 | NETWORKING = network |
---|
10 | endif |
---|
11 | |
---|
12 | BSP_PIECES = startup start canbus console $(NETWORKING) |
---|
13 | # pieces to pick up out of libcpu/ppc |
---|
14 | # CPU_PIECES = mpc860/clock mpc860/timer mpc860/console-generic \ |
---|
15 | # mpc860/vectors |
---|
16 | |
---|
17 | # bummer; have to use $foreach since % pattern subst rules only replace 1x |
---|
18 | OBJS = $(foreach piece, $(BSP_PIECES), $(wildcard ../$(piece)/$(ARCH)/*.o)) \ |
---|
19 | $(wildcard ../../../../libcpu/$(RTEMS_CPU)/shared/*/$(ARCH)/*.o) \ |
---|
20 | $(wildcard ../../../../libcpu/$(RTEMS_CPU)/$(RTEMS_CPU_MODEL)/*/$(ARCH)/*.o) |
---|
21 | LIB = $(ARCH)/libbsp.a |
---|
22 | |
---|
23 | include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg |
---|
24 | include $(top_srcdir)/../../../../../../automake/lib.am |
---|
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 | |
---|
36 | TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/libbsp$(LIB_VARIANT).a |
---|
37 | |
---|
38 | all-local: $(ARCH) $(OBJS) $(LIB) $(TMPINSTALL_FILES) |
---|
39 | |
---|
40 | .PRECIOUS: $(LIB) |
---|
41 | |
---|
42 | include $(top_srcdir)/../../../../../../automake/local.am |
---|
Note: See
TracBrowser
for help on using the repository browser.