source: rtems/c/src/lib/libbsp/m68k/mrm332/startup/Makefile.am @ 332484b5

4.104.114.84.95
Last change on this file since 332484b5 was 332484b5, checked in by Joel Sherrill <joel.sherrill@…>, on 05/25/01 at 16:28:46

2000-05-25 Matt Cross <profesor@…>

  • New MRM332 BSP for the Mini RoboMind? board based on the 68332 microcontroller designed and build by Mark Castelluccio. For details on the MRM see http://www.robominds.com.
  • .cvsignore, ChangeLog? Makefile.am, README, bsp_specs, clock/.cvsignore, clock/Makefile.am, clock/ckinit.c, configure.in, console/.cvsignore, console/Makefile.am, console/console.c, include/.cvsignore, include/Makefile.am, include/bsp.h, include/mrm332.h, misc/dotests, misc/gdbinit68, misc/interr.c, spurious/.cvsignore, spurious/Makefile.am, spurious/spinit.c, start/.cvsignore, start/Makefile.am, start/start.c, startup/.cvsignore, startup/Makefile.am, startup/bspclean.c, startup/bspstart.c, startup/except_vect_332_ROM.S, startup/linkcmds, startup/linkcmds_ROM, timer/.cvsignore, timer/Makefile.am, timer/timer.c, times, wrapup/.cvsignore, wrapup/Makefile.am: Initial files.
  • Property mode set to 100644
File size: 1.4 KB
Line 
1##
2## $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6
7VPATH = @srcdir@:@srcdir@/../../shared:@srcdir@/../../../shared
8
9PGM = $(ARCH)/startup.rel
10
11C_FILES = bsplibc.c bsppost.c bspstart.c bspclean.c bootcard.c \
12    m68kpretaskinghook.c main.c sbrk.c setvec.c gnatinstallhandler.c
13C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
14
15S_FILES = except_vect_332_ROM.S
16S_O_FILES = $(S_FILES:%.S=$(ARCH)/%.o)
17
18OBJS = $(C_O_FILES) $(S_O_FILES)
19
20include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
21include $(top_srcdir)/../../../../../../automake/lib.am
22
23#
24# (OPTIONAL) Add local stuff here using +=
25#
26
27# USE_INIT_FINI tells main.c what C++ help we need.
28AM_CPPFLAGS += -DUSE_INIT_FINI
29
30$(PGM): $(OBJS)
31        $(make-rel)
32
33$(PROJECT_RELEASE)/lib/linkcmds: linkcmds
34        $(INSTALL_DATA) $< $@
35
36$(PROJECT_RELEASE)/lib/linkcmds_ROM: linkcmds_ROM
37        $(INSTALL_DATA) $< $@
38
39$(PROJECT_RELEASE)/lib/except_vect_332_ROM$(LIB_VARIANT).o: \
40    $(ARCH)/except_vect_332_ROM.o
41        $(INSTALL_DATA) $< $@
42
43# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
44TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/linkcmds \
45    $(PROJECT_RELEASE)/lib/linkcmds_ROM \
46    $(PROJECT_RELEASE)/lib/except_vect_332_ROM$(LIB_VARIANT).o
47
48all-local: $(ARCH) $(OBJS) $(PGM) $(TMPINSTALL_FILES)
49
50.PRECIOUS: $(PGM)
51
52EXTRA_DIST = bspclean.c bspstart.c except_vect_332_ROM.S linkcmds \
53    linkcmds_ROM
54
55include $(top_srcdir)/../../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.