source: rtems/c/src/lib/libbsp/i386/i386ex/startup/Makefile.am @ 6ff7e2c

4.104.114.84.95
Last change on this file since 6ff7e2c was 88daa3d, checked in by Ralf Corsepius <ralf.corsepius@…>, on 08/16/03 at 12:56:51

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

Makefile.am: Reflect having moved automake.
clock/Makefile.am: Reflect having moved automake.
console/Makefile.am: Reflect having moved automake.
include/Makefile.am: Reflect having moved automake.
network/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.
wrapup/Makefile.am: Reflect having moved automake.

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