source: rtems/c/src/lib/libbsp/arm/armulator/startup/Makefile.am @ 48b09c93

4.104.114.84.95
Last change on this file since 48b09c93 was 48b09c93, checked in by Ralf Corsepius <ralf.corsepius@…>, on 12/13/02 at 04:44:41

2002-12-13 Ralf Corsepius <corsepiu@…>

  • clock/Makefile.am: Don't include @RTEMS_BSP@.cfg.
  • console/Makefile.am: Don't include @RTEMS_BSP@.cfg.
  • start/Makefile.am: Don't include @RTEMS_BSP@.cfg.
  • startup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
  • timer/Makefile.am: Don't include @RTEMS_BSP@.cfg.
  • Property mode set to 100644
File size: 1.2 KB
Line 
1##
2## $Id$
3##
4
5
6VPATH = @srcdir@:@srcdir@/../../../shared
7
8PGM = $(ARCH)/startup.rel
9
10C_FILES = bsplibc.c bsppost.c bspstart.c bootcard.c main.c sbrk.c \
11    gnatinstallhandler.c libcfunc.c syscalls.c
12C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
13
14S_FILES = trap.S
15S_O_FILES = $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT))
16
17OBJS = $(C_O_FILES) $(S_O_FILES)
18
19include $(top_srcdir)/../../../../../../automake/compile.am
20include $(top_srcdir)/../../../../../../automake/lib.am
21
22#
23# (OPTIONAL) Add local stuff here using +=
24#
25# From newlib
26# Select which debug protocol is being used.
27# ARM_RDP_MONITOR selects the Demon monitor.
28# ARM_RDI_MONITOR selects the Angel monitor.
29# If neither are defined, then hard coded defaults will be used
30# to create the program's environment.
31AM_CPPFLAGS += -DARM_RDI_MONITOR
32
33
34$(PGM): $(OBJS)
35        $(make-rel)
36
37bsplib_DATA = linkcmds
38
39$(PROJECT_RELEASE)/lib/linkcmds: linkcmds
40        $(INSTALL_DATA) $< $@
41
42# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
43TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/linkcmds
44
45all-local: $(ARCH) $(OBJS) $(PGM) $(TMPINSTALL_FILES)
46
47.PRECIOUS: $(PGM)
48
49EXTRA_DIST = bspclean.c bspstart.c exit.c linkcmds setvec.c
50
51include $(top_srcdir)/../../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.