source: rtems/c/src/lib/libbsp/i386/pc386/wrapup/Makefile.am @ 7d52750

4.104.114.84.95
Last change on this file since 7d52750 was cf1f72e, checked in by Joel Sherrill <joel.sherrill@…>, on 06/13/00 at 21:53:38

Moved i386 and m68k cache management code to libcpu. Everything
now is an implementation of the prototypes in rtems/rtems/cache.h.
The libcpu/i386/wrapup directory is no longer needed.
The PowerPC needs this done to it.

  • Property mode set to 100644
File size: 953 bytes
Line 
1##
2## $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6
7# We only build the Network library if HAS_NETWORKING was defined
8# dec21140 is supported via libchip
9if HAS_NETWORKING
10NETWORK = ne2000 wd8003 3c509
11endif
12
13BSP_FILES = startup clock console timer $(NETWORK)
14
15# bummer; have to use $foreach since % pattern subst rules only replace 1x
16OBJS = $(foreach piece, $(BSP_FILES), $(wildcard ../$(piece)/$(ARCH)/*.o)) \
17       $(wildcard ../../../../libcpu/i386/$(ARCH)/*.o)
18LIB = $(ARCH)/libbsp.a
19
20include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
21include $(top_srcdir)/../../../../../../automake/lib.am
22
23#
24# (OPTIONAL) Add local stuff here using +=
25#
26
27$(LIB): $(OBJS)
28        $(make-library)
29
30$(PROJECT_RELEASE)/lib/libbsp$(LIB_VARIANT).a: $(LIB)
31        $(INSTALL_DATA) $< $@
32
33TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/libbsp$(LIB_VARIANT).a
34
35all-local: $(ARCH) $(OBJS) $(LIB) $(TMPINSTALL_FILES)
36
37.PRECIOUS: $(LIB)
38
39include $(top_srcdir)/../../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.