source: rtems/c/src/lib/libbsp/arm/arm_bare_bsp/startup/Makefile.am @ 08330bf

4.104.114.84.95
Last change on this file since 08330bf was 08330bf, checked in by Joel Sherrill <joel.sherrill@…>, on 07/27/00 at 01:04:11

Port of RTEMS to the ARM processor family by Eric Valette
<valette@…> and Emmanuel Raguet <raguet@…>
of Canon CRF - Communication Dept. This port includes a
basic BSP that is sufficient to link hello world.

  • Property mode set to 100644
File size: 862 bytes
Line 
1##
2## $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6
7VPATH = @srcdir@:@srcdir@/../../../shared
8
9C_FILES = bsplibc.c bsppost.c bspstart.c exit.c bootcard.c main.c sbrk.c gnatinstallhandler.c
10C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
11
12S_FILES =
13S_O_FILES = $(S_FILES:%.S=$(ARCH)/%.o)
14
15startup_rel_OBJECTS = $(C_O_FILES) $(S_O_FILES)
16
17include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
18include $(top_srcdir)/../../../../../../automake/lib.am
19
20#
21# (OPTIONAL) Add local stuff here using +=
22#
23
24# USE_INIT_FINI tells main.c what C++ help we need.
25
26$(PGM): $(startup_rel_OBJECTS)
27        $(make-rel)
28
29$(PROJECT_RELEASE)/lib/linkcmds: linkcmds
30        $(INSTALL_DATA) $< $@
31
32TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/linkcmds
33
34all: $(ARCH) $(startup_rel_OBJECTS) $(PGM) $(TMPINSTALL_FILES)
35
36.PRECIOUS: $(PGM)
37
38EXTRA_DIST = linkcmds
39
40include $(top_srcdir)/../../../../../../automake/local.am
41
Note: See TracBrowser for help on using the repository browser.