source: rtems/c/src/lib/libbsp/arm/armulator/startup/Makefile.am @ 3777ea14

4.104.114.84.95
Last change on this file since 3777ea14 was 3777ea14, checked in by Ralf Corsepius <ralf.corsepius@…>, on 08/11/02 at 06:10:10

2002-08-11 Ralf Corsepius <corsepiu@…>

  • clock/Makefile.am: Use .$(OBJEXT) instead of .o.
    • console/Makefile.am: Use .$(OBJEXT) instead of .o.
    • start/Makefile.am: Use .$(OBJEXT) instead of .o.
    • startup/Makefile.am: Use .$(OBJEXT) instead of .o.
    • timer/Makefile.am: Use .$(OBJEXT) instead of .o.
    • wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
  • Property mode set to 100644
File size: 1.3 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 $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
20include $(top_srcdir)/../../../../../../automake/compile.am
21include $(top_srcdir)/../../../../../../automake/lib.am
22
23#
24# (OPTIONAL) Add local stuff here using +=
25#
26# From newlib
27# Select which debug protocol is being used.
28# ARM_RDP_MONITOR selects the Demon monitor.
29# ARM_RDI_MONITOR selects the Angel monitor.
30# If neither are defined, then hard coded defaults will be used
31# to create the program's environment.
32AM_CPPFLAGS += -DARM_RDI_MONITOR
33
34
35$(PGM): $(OBJS)
36        $(make-rel)
37
38bsplib_DATA = linkcmds
39
40$(PROJECT_RELEASE)/lib/linkcmds: linkcmds
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
46all-local: $(ARCH) $(OBJS) $(PGM) $(TMPINSTALL_FILES)
47
48.PRECIOUS: $(PGM)
49
50EXTRA_DIST = bspclean.c bspstart.c exit.c linkcmds setvec.c
51
52include $(top_srcdir)/../../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.