source: rtems/c/src/lib/libbsp/no_cpu/no_bsp/wrapup/Makefile.am @ c61c097

4.104.114.84.95
Last change on this file since c61c097 was c61c097, checked in by Ralf Corsepius <ralf.corsepius@…>, on 08/11/02 at 06:58:28

2002-08-11 Ralf Corsepius <corsepiu@…>

  • clock/Makefile.am: Use .$(OBJEXT) instead of .o.
    • console/Makefile.am: Use .$(OBJEXT) instead of .o.
    • shmsupp/Makefile.am: Use .$(OBJEXT) instead of .o.
    • startup/Makefile.am: Use .$(OBJEXT) instead of .o.
    • timer/Makefile.am: Use .$(OBJEXT) instead of .o.
    • wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
  • Property mode set to 100644
File size: 799 bytes
RevLine 
[df49c60]1##
[4e36a2f]2## $Id$
[df49c60]3##
[4e36a2f]4
5if HAS_MP
6GENERIC_MP_REL_FILES = shmdr
7endif
8GENERIC_FILES = $(GENERIC_MP_REL_FILES)
9
10if HAS_MP
11BSP_MP_O_FILES = shmsupp
12endif
[df49c60]13BSP_FILES = startup clock console timer $(BSP_MP_O_FILES)
[4e36a2f]14
15# bummer; have to use $foreach since % pattern subst rules only replace 1x
[c61c097]16OBJS = $(foreach piece, $(BSP_FILES), $(wildcard ../$(piece)/$(ARCH)/*.$(OBJEXT))) \
[4e36a2f]17    $(foreach piece, $(GENERIC_FILES), ../../../$(piece)/$(ARCH)/$(piece).rel)
18
19LIB = $(ARCH)/libbsp.a
20
21include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
[0dcf5e12]22include $(top_srcdir)/../../../../../../automake/compile.am
[4e36a2f]23include $(top_srcdir)/../../../../../../automake/lib.am
24
25#
26# (OPTIONAL) Add local stuff here using +=
27#
28
29$(LIB): $(OBJS)
30        $(make-library)
31
[445c0a0]32all-local: $(ARCH) $(LIB)
[4e36a2f]33
34include $(top_srcdir)/../../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.