source: rtems/c/src/lib/libbsp/i386/ts_386ex/startup/Makefile.am @ 134dceb

4.104.114.84.95
Last change on this file since 134dceb was 134dceb, checked in by Joel Sherrill <joel.sherrill@…>, on 03/28/02 at 00:40:06

2002-03-27 Ralf Corsepius <corsepiu@…>

  • configure.ac: AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS). AM_INIT_AUTOMAKE([no-define foreign 1.6]).
  • clock/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • Makefile.am: Remove AUTOMAKE_OPTIONS.
  • console/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • include/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • network/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • start/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • timer/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • Property mode set to 100644
File size: 1.1 KB
Line 
1##
2## $Id$
3##
4
5
6VPATH = @srcdir@:@srcdir@/../../../shared:@srcdir@/../../shared/comm:@srcdir@/../../shared/irq:@srcdir@/../../shared/io
7
8PGM = $(ARCH)/startup.rel
9
10C_FILES = bspclean.c bsplibc.c bsppost.c bspstart.c bootcard.c main.c sbrk.c \
11    idt.c irq.c irq_init.c i386-stub.c i386-stub-glue.c uart.c \
12    gnatinstallhandler.c
13C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
14
15S_FILES = irq_asm.S
16S_O_FILES = $(S_FILES:%.S=$(ARCH)/%.o)
17
18startup_rel_OBJECTS = $(C_O_FILES) $(S_O_FILES)
19
20include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
21include $(top_srcdir)/../../../../../../automake/compile.am
22include $(top_srcdir)/../../../../../../automake/lib.am
23
24#
25# (OPTIONAL) Add local stuff here using +=
26#
27
28AM_CPPFLAGS += -DUSE_INIT_FINI
29
30$(PGM): $(startup_rel_OBJECTS)
31        $(make-rel)
32
33$(PROJECT_RELEASE)/lib/linkcmds: linkcmds
34        $(INSTALL_DATA) $< $@
35
36UNUSED_C_FILES = setvec.c
37
38TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/linkcmds
39
40all-local: $(ARCH) $(startup_rel_OBJECTS) $(PGM) $(TMPINSTALL_FILES)
41
42.PRECIOUS: $(PGM)
43
44EXTRA_DIST = README bspstart.c linkcmds setvec.c
45
46include $(top_srcdir)/../../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.