source: rtems/c/src/lib/libbsp/no_cpu/no_bsp/wrapup/Makefile.in @ e1d8abb

4.104.114.84.95
Last change on this file since e1d8abb was e1d8abb, checked in by Joel Sherrill <joel.sherrill@…>, on 09/07/99 at 13:45:03

Applied patch rtems-rc-19990820-6.diff.gz from
Ralf Corsepius <corsepiu@…> which converted many
Makefile.in's to Makefile.am's. This added a lot of files.

  • Property mode set to 100644
File size: 1.5 KB
Line 
1#
2#  $Id$
3#
4
5@SET_MAKE@
6srcdir = @srcdir@
7top_srcdir = @top_srcdir@
8top_builddir = ../../..
9subdir = no_cpu/no_bsp/wrapup
10
11RTEMS_ROOT = @RTEMS_ROOT@
12PROJECT_ROOT = @PROJECT_ROOT@
13
14VPATH = @srcdir@
15
16include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
17include $(RTEMS_ROOT)/make/lib.cfg
18
19INSTALL_CHANGE = @INSTALL_CHANGE@
20
21BSP_PIECES = startup clock console timer
22
23GENERIC_MP_REL_PIECES_yes_V = shmdr
24GENERIC_MP_REL_PIECES_no_V =
25GENERIC_PIECES += $(GENERIC_MP_REL_PIECES_$(HAS_MP)_V)
26
27BSP_MP_O_PIECES_yes_V = shmsupp
28BSP_MP_O_PIECES_no_V =
29BSP_PIECES += $(BSP_MP_O_PIECES_$(HAS_MP)_V)
30
31# bummer; have to use $foreach since % pattern subst rules only replace 1x
32OBJS = $(foreach piece, $(BSP_PIECES), $(wildcard ../$(piece)/$(ARCH)/*.o)) \
33    $(foreach piece, $(GENERIC_PIECES), \
34    ../../../$(piece)/$(ARCH)/$(piece).rel)
35LIB = $(ARCH)/libbsp.a
36
37#
38# (OPTIONAL) Add local stuff here using +=
39#
40
41DEFINES +=
42CPPFLAGS +=
43CFLAGS +=
44
45LD_PATHS +=
46LD_LIBS +=
47LDFLAGS +=
48
49#
50# Add your list of files to delete here.  The config files
51#  already know how to delete some stuff, so you may want
52#  to just run 'make clean' first to see what gets missed.
53#  'make clobber' already includes 'make clean'
54#
55
56CLEAN_ADDITIONS +=
57CLOBBER_ADDITIONS +=
58
59$(LIB): ${OBJS}
60        $(make-library)
61
62all: ${ARCH} $(SRCS) $(LIB)
63        $(INSTALL_VARIANT) -m 644 $(LIB) $(PROJECT_RELEASE)/lib
64
65Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
66        cd $(top_builddir) \
67         && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
Note: See TracBrowser for help on using the repository browser.