source: rtems/c/src/lib/libbsp/i960/rxgen960/wrapup/Makefile.am @ 8b15163f

4.104.114.84.95
Last change on this file since 8b15163f was 8b15163f, checked in by Joel Sherrill <joel.sherrill@…>, on 01/09/01 at 17:28:15

2001-01-09 Joel Sherrill <joel@…>

  • Removing non-function shmsupp directory.
  • shmsupp/.cvsignore, shmsupp/Makefile.am, shmsupp/addrconv.c, shmsupp/getcfg.c, shmsupp/lock.c, shmsupp/mpisr.c: Removed.
  • configure.in, Makefile.am, wrapup/Makefile.am
  • Property mode set to 100644
File size: 871 bytes
Line 
1##
2## $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6
7include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
8include $(top_srcdir)/../../../../../../automake/compile.am
9include $(top_srcdir)/../../../../../../automake/lib.am
10
11BSP_PIECES = startup clock console timer
12
13# bummer; have to use $foreach since % pattern subst rules only replace 1x
14OBJS = $(foreach piece, $(BSP_PIECES), $(wildcard ../$(piece)/$(ARCH)/*.o)) \
15    $(wildcard ../../../../libcpu/$(RTEMS_CPU)/$(RTEMS_CPU_MODEL)/$(ARCH)/*.o)
16LIB = $(ARCH)/libbsp.a
17
18#
19# (OPTIONAL) Add local stuff here using +=
20#
21
22$(LIB): $(OBJS)
23        $(make-library)
24
25$(PROJECT_RELEASE)/lib/libbsp$(LIB_VARIANT).a: $(LIB)
26        $(INSTALL_DATA) $< $@
27
28TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/libbsp$(LIB_VARIANT).a
29
30all-local: $(ARCH) $(OBJS) $(LIB) $(TMPINSTALL_FILES)
31
32.PRECIOUS: $(LIB)
33
34include $(top_srcdir)/../../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.