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

4.104.114.84.95
Last change on this file since 80052531 was a5417074, checked in by Joel Sherrill <joel.sherrill@…>, on 09/05/00 at 15:42:23

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

  • 3c509/Makefile.am, clock/Makefile.am, console/Makefile.am, ne2000/Makefile.am, start/Makefile.am, startup/Makefile.am, timer/Makefile.am, wd8003/Makefile.am, wrapup/Makefile.am: Include compile.am
  • Property mode set to 100644
File size: 1010 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/compile.am
22include $(top_srcdir)/../../../../../../automake/lib.am
23
24#
25# (OPTIONAL) Add local stuff here using +=
26#
27
28$(LIB): $(OBJS)
29        $(make-library)
30
31$(PROJECT_RELEASE)/lib/libbsp$(LIB_VARIANT).a: $(LIB)
32        $(INSTALL_DATA) $< $@
33
34TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/libbsp$(LIB_VARIANT).a
35
36all-local: $(ARCH) $(OBJS) $(LIB) $(TMPINSTALL_FILES)
37
38.PRECIOUS: $(LIB)
39
40include $(top_srcdir)/../../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.