source: rtems/c/src/lib/libbsp/sh/gensh1/wrapup/Makefile.in @ 8123c635

4.104.114.84.95
Last change on this file since 8123c635 was 8123c635, checked in by Joel Sherrill <joel.sherrill@…>, on 07/17/98 at 15:43:42

Added scitab directory.

  • Property mode set to 100644
File size: 1.3 KB
Line 
1#
2#  $Id$
3#
4#  build and install libbsp
5#
6
7@SET_MAKE@
8srcdir = @srcdir@
9VPATH=@srcdir@
10RTEMS_ROOT = @top_srcdir@
11PROJECT_ROOT = @PROJECT_ROOT@
12
13BSP_PIECES=startup scitab
14GENERIC_PIECES=
15
16# pieces to pick up out of libcpu/sh
17CPU_PIECES=\
18        sh7032/null \
19        sh7032/clock \
20        sh7032/console \
21        sh7032/timer
22
23# bummer; have to use $foreach since % pattern subst rules only replace 1x
24OBJS=$(foreach piece, $(BSP_PIECES), ../$(piece)/$(ARCH)/$(piece).rel) \
25     $(foreach piece, $(CPU_PIECES), \
26         ../../../../libcpu/$(RTEMS_CPU)/$(piece)/$(ARCH)/$(notdir $(piece)).rel) \
27     $(foreach piece, $(GENERIC_PIECES), ../../../../$(piece)/$(ARCH)/$(piece).rel)
28
29LIB=$(ARCH)/libbsp.a
30
31include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
32include $(RTEMS_ROOT)/make/lib.cfg
33
34#
35# (OPTIONAL) Add local stuff here using +=
36#
37
38DEFINES  +=
39CPPFLAGS +=
40CFLAGS   +=
41
42LD_PATHS  +=
43LD_LIBS   +=
44LDFLAGS   +=
45
46#
47# Add your list of files to delete here.  The config files
48#  already know how to delete some stuff, so you may want
49#  to just run 'make clean' first to see what gets missed.
50#  'make clobber' already includes 'make clean'
51#
52
53CLEAN_ADDITIONS +=
54CLOBBER_ADDITIONS +=
55
56$(LIB): ${OBJS}
57        $(make-library)
58
59all:    ${ARCH} $(SRCS) $(LIB)
60        $(INSTALL_VARIANT) -m 644 $(LIB) ${PROJECT_RELEASE}/lib
61
62install:  all
Note: See TracBrowser for help on using the repository browser.