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

4.104.114.84.95
Last change on this file since 50b3fcf was 50b3fcf, checked in by Ralf Corsepius <ralf.corsepius@…>, on 12/09/03 at 14:13:13

2003-12-09 Ralf Corsepius <corsepiu@…>

  • Makefile.am: Misc cleanups and fixes.
  • start/Makefile.am: Misc cleanups and fixes.
  • startup/Makefile.am: Misc cleanups and fixes.
  • wrapup/Makefile.am: Misc cleanups and fixes.
  • Property mode set to 100644
File size: 1.1 KB
Line 
1##
2## $Id$
3##
4
5VPATH = @srcdir@:@srcdir@/../../../shared:@srcdir@/../../shared/irq:@srcdir@/../../shared/comm:@srcdir@/../../shared/pci
6
7PGM = $(ARCH)/startup.rel
8
9C_FILES = bsplibc.c bsppost.c bspstart.c exit.c idt.c irq.c irq_init.c \
10    bootcard.c main.c sbrk.c i386-stub.c i386-stub-glue.c uart.c pcibios.c \
11    gnatinstallhandler.c gdb_glue.c tty_drv.c
12
13C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
14
15S_FILES = ldsegs.S 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
30project_lib_DATA = linkcmds
31
32all-local: $(startup_rel_OBJECTS) $(PGM) $(TMPINSTALL_FILES)
33
34EXTRA_DIST = bspstart.c exit.c ldsegs.S linkcmds sbrk.c
35
36${PROJECT_RELEASE}/lib/linkcmds: linkcmds ${PROJECT_RELEASE}/lib/$(dirstamp)
37        $(INSTALL_DATA) $< ${PROJECT_RELEASE}/lib/linkcmds
38TMPINSTALL_FILES += ${PROJECT_RELEASE}/lib/linkcmds
39
40include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.