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

4.104.114.84.95
Last change on this file since a079546 was 1bb55d6, checked in by Ralf Corsepius <ralf.corsepius@…>, on 12/02/03 at 16:51:06

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

  • Makefile.am: Add preinstallation dirstamp support.
  • 3c509/Makefile.am: Cosmetics.
  • clock/Makefile.am: Cosmetics.
  • console/Makefile.am: Add preinstallation dirstamp support.
  • ide/Makefile.am: Cosmetics.
  • ne2000/Makefile.am: Cosmetics.
  • start/Makefile.am: Add compilation dirstamp support.
  • startup/Makefile.am: Cosmetics.
  • timer/Makefile.am: Cosmetics.
  • wd8003/Makefile.am: Cosmetics.
  • wrapup/Makefile.am: Cosmetics.
  • Property mode set to 100644
File size: 1.0 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
30bsplib_DATA = linkcmds
31
32$(PROJECT_RELEASE)/lib/linkcmds: linkcmds
33        $(INSTALL_DATA) $< $@
34
35TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/linkcmds
36
37all-local: $(startup_rel_OBJECTS) $(PGM) $(TMPINSTALL_FILES)
38
39.PRECIOUS: $(PGM)
40
41EXTRA_DIST = bspstart.c exit.c ldsegs.S linkcmds sbrk.c
42
43include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.