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

4.104.114.84.95
Last change on this file since bebc81e4 was 9dffd2de, checked in by Ralf Corsepius <ralf.corsepius@…>, on 12/02/03 at 05:40:05

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

  • 3c509/Makefile.am: Remove all-local: $(ARCH).
  • clock/Makefile.am: Remove all-local: $(ARCH).
  • console/Makefile.am: Remove all-local: $(ARCH).
  • ide/Makefile.am: Remove all-local: $(ARCH).
  • ne2000/Makefile.am: Remove all-local: $(ARCH).
  • start/Makefile.am: Remove all-local: $(ARCH).
  • startup/Makefile.am: Remove all-local: $(ARCH).
  • timer/Makefile.am: Remove all-local: $(ARCH).
  • wd8003/Makefile.am: Remove all-local: $(ARCH).
  • wrapup/Makefile.am: Remove all-local: $(ARCH).
  • 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: $(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.