source: rtems/c/src/lib/libbsp/powerpc/eth_comm/wrapup/Makefile.am @ eba2e4f

4.104.114.84.95
Last change on this file since eba2e4f was c8abef6, checked in by Joel Sherrill <joel.sherrill@…>, on 09/05/00 at 15:50:49

2000-09-04 Ralf Corsepius <corsepiu@…>

  • canbus/Makefile.am, console/Makefile.am, network/Makefile.am, start/Makefile.am, startup/Makefile.am, wrapup/Makefile.am: Include compile.am
  • Property mode set to 100644
File size: 1.3 KB
Line 
1##
2## $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6
7# We only build the networking device driver if HAS_NETWORKING was defined
8if HAS_NETWORKING
9NETWORKING = network
10endif
11
12BSP_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
18OBJS = $(foreach piece, $(BSP_PIECES), $(wildcard ../$(piece)/$(ARCH)/*.o)) \
19    $(wildcard ../../../../libcpu/$(RTEMS_CPU)/shared/*/$(ARCH)/*.o) \
20    $(wildcard ../../../../libcpu/powerpc/old_exception_processing/$(ARCH)/*.rel) \
21    $(wildcard ../../../../libcpu/$(RTEMS_CPU)/$(RTEMS_CPU_MODEL)/*/$(ARCH)/*.o)
22LIB = $(ARCH)/libbsp.a
23
24include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
25include $(top_srcdir)/../../../../../../automake/compile.am
26include $(top_srcdir)/../../../../../../automake/lib.am
27
28#
29# (OPTIONAL) Add local stuff here using +=
30#
31
32$(LIB): $(OBJS)
33        $(make-library)
34
35$(PROJECT_RELEASE)/lib/libbsp$(LIB_VARIANT).a: $(LIB)
36        $(INSTALL_DATA) $< $@
37
38TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/libbsp$(LIB_VARIANT).a
39
40all-local: $(ARCH) $(OBJS) $(LIB) $(TMPINSTALL_FILES)
41
42.PRECIOUS: $(LIB)
43
44include $(top_srcdir)/../../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.