source: rtems/c/src/lib/libbsp/arm/arm_bare_bsp/startup/Makefile.am @ 92b8b98a

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

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

  • clock/Makefile.am: Use .$(OBJEXT) instead of .o.
    • console/Makefile.am: Use .$(OBJEXT) instead of .o.
    • irq/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: 934 bytes
RevLine 
[6617845]1##
[08330bf]2## $Id$
[6617845]3##
[08330bf]4
5
6VPATH = @srcdir@:@srcdir@/../../../shared
7
[6617845]8C_FILES = bsplibc.c bsppost.c bspstart.c exit.c bootcard.c main.c sbrk.c \
9    gnatinstallhandler.c
[d0d73ec]10C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
[08330bf]11
12S_FILES =
[d0d73ec]13S_O_FILES = $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT))
[08330bf]14
15startup_rel_OBJECTS = $(C_O_FILES) $(S_O_FILES)
16
17include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
[6617845]18include $(top_srcdir)/../../../../../../automake/compile.am
[08330bf]19include $(top_srcdir)/../../../../../../automake/lib.am
20
21#
22# (OPTIONAL) Add local stuff here using +=
23#
24
25# USE_INIT_FINI tells main.c what C++ help we need.
26
27$(PGM): $(startup_rel_OBJECTS)
28        $(make-rel)
29
[1a27b40]30bsplib_DATA = linkcmds
31
[08330bf]32$(PROJECT_RELEASE)/lib/linkcmds: linkcmds
33        $(INSTALL_DATA) $< $@
34
35TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/linkcmds
36
37all: $(ARCH) $(startup_rel_OBJECTS) $(PGM) $(TMPINSTALL_FILES)
38
39.PRECIOUS: $(PGM)
40
41EXTRA_DIST = linkcmds
42
43include $(top_srcdir)/../../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.