source: rtems/c/src/lib/libbsp/i386/pc386/startup/Makefile.am @ 7416017

4.104.114.84.95
Last change on this file since 7416017 was 7842090b, checked in by Ralf Corsepius <ralf.corsepius@…>, on 08/16/03 at 12:56:43

2003-08-16 Ralf Corsepius <corsepiu@…>

Makefile.am: Reflect having moved automake.
3c509/Makefile.am: Reflect having moved automake.
clock/Makefile.am: Reflect having moved automake.
console/Makefile.am: Reflect having moved automake.
ide/Makefile.am: Reflect having moved automake.
include/Makefile.am: Reflect having moved automake.
ne2000/Makefile.am: Reflect having moved automake.
start/Makefile.am: Reflect having moved automake.
startup/Makefile.am: Reflect having moved automake.
timer/Makefile.am: Reflect having moved automake.
wd8003/Makefile.am: Reflect having moved automake.
wrapup/Makefile.am: Reflect having moved automake.

  • Property mode set to 100644
File size: 1.0 KB
Line 
1##
2## $Id$
3##
4
5
6VPATH = @srcdir@:@srcdir@/../../../shared:@srcdir@/../../shared/irq:@srcdir@/../../shared/comm:@srcdir@/../../shared/pci
7
8PGM = $(ARCH)/startup.rel
9
10C_FILES = bsplibc.c bsppost.c bspstart.c exit.c idt.c irq.c irq_init.c \
11    bootcard.c main.c sbrk.c i386-stub.c i386-stub-glue.c uart.c pcibios.c \
12    gnatinstallhandler.c gdb_glue.c tty_drv.c
13
14C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
15
16S_FILES = ldsegs.S irq_asm.S
17S_O_FILES = $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT))
18
19startup_rel_OBJECTS = $(C_O_FILES) $(S_O_FILES)
20
21include $(top_srcdir)/../../../../automake/compile.am
22include $(top_srcdir)/../../../../automake/lib.am
23
24#
25# (OPTIONAL) Add local stuff here using +=
26#
27
28$(PGM): $(startup_rel_OBJECTS)
29        $(make-rel)
30
31bsplib_DATA = linkcmds
32
33$(PROJECT_RELEASE)/lib/linkcmds: linkcmds
34        $(INSTALL_DATA) $< $@
35
36TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/linkcmds
37
38all-local: $(ARCH) $(startup_rel_OBJECTS) $(PGM) $(TMPINSTALL_FILES)
39
40.PRECIOUS: $(PGM)
41
42EXTRA_DIST = bspstart.c exit.c ldsegs.S linkcmds sbrk.c
43
44include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.