source: rtems/c/src/lib/libbsp/i386/i386ex/startup/Makefile.am @ 27515f6d

4.104.114.84.95
Last change on this file since 27515f6d was 27515f6d, checked in by Ralf Corsepius <ralf.corsepius@…>, on 12/02/03 at 17:56:11

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

  • Makefile.am: Add preinstallation dirstamp support.
  • clock/Makefile.am: Cosmetics.
  • console/Makefile.am: Cosmetics.
  • network/Makefile.am: Cosmetics.
  • startup/Makefile.am: Cosmetics.
  • timer/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/comm:@srcdir@/../../shared/irq:@srcdir@/../../shared/io
6
7PGM = $(ARCH)/startup.rel
8
9C_FILES = bspclean.c bsplibc.c bsppost.c bspstart.c bootcard.c main.c sbrk.c \
10    idt.c irq.c irq_init.c i386-stub.c i386-stub-glue.c uart.c \
11    gnatinstallhandler.c gdb_glue.c tty_drv.c
12C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
13
14S_FILES = irq_asm.S
15S_O_FILES = $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT))
16
17startup_rel_OBJECTS = $(C_O_FILES) $(S_O_FILES)
18
19include $(top_srcdir)/../../../../automake/compile.am
20include $(top_srcdir)/../../../../automake/lib.am
21
22#
23# (OPTIONAL) Add local stuff here using +=
24#
25
26$(PGM): $(startup_rel_OBJECTS)
27        $(make-rel)
28
29bsplib_DATA = linkcmds
30
31$(PROJECT_RELEASE)/lib/linkcmds: linkcmds
32        $(INSTALL_DATA) $< $@
33
34UNUSED_C_FILES = setvec.c
35
36TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/linkcmds
37
38all-local: $(startup_rel_OBJECTS) $(PGM) $(TMPINSTALL_FILES)
39
40.PRECIOUS: $(PGM)
41
42EXTRA_DIST = README bspstart.c linkcmds setvec.c
43
44include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.