source: rtems/c/src/lib/libbsp/m68k/mvme147s/startup/Makefile.in @ 7068e246

4.104.114.84.95
Last change on this file since 7068e246 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.6 KB
Line 
1#
2#  $Id$
3#
4
5@SET_MAKE@
6srcdir = @srcdir@
7top_srcdir = @top_srcdir@
8top_builddir = ..
9subdir = startup
10
11RTEMS_ROOT = @RTEMS_ROOT@
12PROJECT_ROOT = @PROJECT_ROOT@
13
14VPATH = \
15    @srcdir@:@srcdir@/../../mvme147/startup:@srcdir@/../../shared:@srcdir@/../../../shared
16
17PGM = ${ARCH}/startup.rel
18
19# C source names, if any, go here -- minus the .c
20C_PIECES = bspclean bsplibc bsppost bspstart bootcard main sbrk setvec \
21    gnatinstallhandler
22C_FILES = $(C_PIECES:%=%.c)
23C_O_FILES = $(C_PIECES:%=${ARCH}/%.o)
24
25H_FILES =
26
27SRCS = $(srcdir)/linkcmds $(C_FILES) $(H_FILES)
28OBJS = $(C_O_FILES)
29
30include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
31include $(RTEMS_ROOT)/make/leaf.cfg
32
33INSTALL_CHANGE = @INSTALL_CHANGE@
34mkinstalldirs = $(SHELL) $(top_srcdir)/@RTEMS_TOPdir@/mkinstalldirs
35
36INSTALLDIRS = $(PROJECT_RELEASE)/lib
37
38$(INSTALLDIRS):
39        @$(mkinstalldirs) $(INSTALLDIRS)
40
41#
42# (OPTIONAL) Add local stuff here using +=
43#
44
45DEFINES +=
46CPPFLAGS +=
47CFLAGS +=
48
49LD_PATHS +=
50LD_LIBS +=
51LDFLAGS +=
52
53#
54# Add your list of files to delete here.  The config files
55#  already know how to delete some stuff, so you may want
56#  to just run 'make clean' first to see what gets missed.
57#  'make clobber' already includes 'make clean'
58#
59
60CLEAN_ADDITIONS +=
61CLOBBER_ADDITIONS +=
62
63$(PGM): ${OBJS}
64        $(make-rel)
65
66all: ${ARCH} $(SRCS) $(PGM)
67        $(INSTALL_CHANGE) -m 644 $(srcdir)/linkcmds $(PROJECT_RELEASE)/lib
68
69# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
70
71Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
72        cd $(top_builddir) \
73         && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
Note: See TracBrowser for help on using the repository browser.