source: rtems/c/src/lib/libbsp/i386/pc386/wrapup/Makefile.am @ 6f921ba

Last change on this file since 6f921ba was 6f921ba, checked in by Joel Sherrill <joel.sherrill@…>, on 03/21/00 at 17:57:21

Ran ampolish after getting new version from Ralf Corsepius
<corsepiu@…>.

  • Property mode set to 100644
File size: 890 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))
17LIB = $(ARCH)/libbsp.a
18
19include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
20include $(top_srcdir)/../../../../../../automake/lib.am
21
22#
23# (OPTIONAL) Add local stuff here using +=
24#
25
26$(LIB): $(OBJS)
27        $(make-library)
28
29$(PROJECT_RELEASE)/lib/libbsp$(LIB_VARIANT).a: $(LIB)
30        $(INSTALL_DATA) $< $@
31
32TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/libbsp$(LIB_VARIANT).a
33
34all: $(ARCH) $(OBJS) $(LIB) $(TMPINSTALL_FILES)
35
36.PRECIOUS: $(LIB)
37
38include $(top_srcdir)/../../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.