source: rtems/c/src/lib/libbsp/i386/ts_386ex/startup/Makefile.am @ 3299388d

4.104.114.84.95
Last change on this file since 3299388d 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
RevLine 
[df49c60]1##
[69537ca9]2## $Id$
[df49c60]3##
[69537ca9]4
5
[4e36a2f]6VPATH = @srcdir@:@srcdir@/../../../shared:@srcdir@/../../shared/comm:@srcdir@/../../shared/irq:@srcdir@/../../shared/io
[69537ca9]7
[4e36a2f]8PGM = $(ARCH)/startup.rel
[69537ca9]9
10C_FILES = bspclean.c bsplibc.c bsppost.c bspstart.c bootcard.c main.c sbrk.c \
[bad7e90]11    idt.c irq.c irq_init.c i386-stub.c i386-stub-glue.c uart.c \
[7002011]12    gnatinstallhandler.c gdb_glue.c tty_drv.c
[0fe6737]13C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
[69537ca9]14
15S_FILES = irq_asm.S
[0fe6737]16S_O_FILES = $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT))
[69537ca9]17
18startup_rel_OBJECTS = $(C_O_FILES) $(S_O_FILES)
19
[88daa3d]20include $(top_srcdir)/../../../../automake/compile.am
21include $(top_srcdir)/../../../../automake/lib.am
[69537ca9]22
23#
24# (OPTIONAL) Add local stuff here using +=
25#
26
[4e36a2f]27$(PGM): $(startup_rel_OBJECTS)
[69537ca9]28        $(make-rel)
29
[fdc10e3]30bsplib_DATA = linkcmds
31
[69537ca9]32$(PROJECT_RELEASE)/lib/linkcmds: linkcmds
33        $(INSTALL_DATA) $< $@
34
[4e36a2f]35UNUSED_C_FILES = setvec.c
36
[69537ca9]37TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/linkcmds
38
[4e36a2f]39all-local: $(ARCH) $(startup_rel_OBJECTS) $(PGM) $(TMPINSTALL_FILES)
[69537ca9]40
[4e36a2f]41.PRECIOUS: $(PGM)
42
43EXTRA_DIST = README bspstart.c linkcmds setvec.c
[69537ca9]44
[88daa3d]45include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.