source: rtems/c/src/lib/libbsp/m68k/gen68340/wrapup/Makefile.in @ 0dd1d44

4.104.114.84.95
Last change on this file since 0dd1d44 was 7068e246, checked in by Joel Sherrill <joel.sherrill@…>, on 01/10/00 at 14:29:44

Patch rtems-rc-20000104-10.diff from Ralf Corsepius <corsepiu@…>
that converts the m68k directory to automake.

NOTE: This one is fully tested by building *all* bsps with

../../rtems-rc-20000104/configure \

--target=m68k-rtems \
--prefix=/tmp/rtems \
--enable-cxx \
--disable-posix \
--enable-rdbg \
--disable-networking \
--enable-maintainer-mode \
--enable-multiprocessing \
--disable-tests

make

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