source: rtems/c/src/lib/libbsp/powerpc/score603e/startup/Makefile.am @ a9b84f7

4.104.114.84.95
Last change on this file since a9b84f7 was a9b84f7, checked in by Joel Sherrill <joel.sherrill@…>, on 09/05/00 at 15:52:15

2000-09-04 Ralf Corsepius <corsepiu@…>

  • PCI_bus/Makefile.am, clock/Makefile.am, console/Makefile.am, start/Makefile.am, startup/Makefile.am, timer/Makefile.am, tod/Makefile.am, vectors/Makefile.am, wrapup/Makefile.am: Include compile.am
  • Property mode set to 100644
File size: 1.1 KB
Line 
1##
2## $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6
7VPATH = @srcdir@:@srcdir@/../../../shared
8
9PGM = $(ARCH)/startup.rel
10
11#
12# First and second generation use different Bridge chips :(
13#       Generation 1 --> 82378zb
14#       Generation 2 --> FPGA
15STARTUP_C_FILES = 82378zb.c FPGA.c
16
17C_FILES = bspclean.c bsplibc.c bsppost.c bspstart.c bootcard.c main.c sbrk.c \
18    setvec.c Hwr_init.c spurious.c genpvec.c $(STARTUP_C_FILES) \
19    gnatinstallhandler.c
20C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
21
22OBJS = $(C_O_FILES)
23
24include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
25include $(top_srcdir)/../../../../../../automake/compile.am
26include $(top_srcdir)/../../../../../../automake/lib.am
27
28#
29# (OPTIONAL) Add local stuff here using +=
30#
31
32$(PGM): $(OBJS)
33        $(make-rel)
34
35$(PROJECT_RELEASE)/lib/linkcmds: linkcmds
36        $(INSTALL_DATA) $< $@
37
38TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/linkcmds
39
40all-local: $(ARCH) $(OBJS) $(PGM) $(TMPINSTALL_FILES)
41
42.PRECIOUS: $(PGM)
43
44EXTRA_DIST = 82378zb.c FPGA.c Hwr_init.c bspclean.c bspstart.c genpvec.c \
45    linkcmds setvec.c spurious.c vmeintr.c
46
47include $(top_srcdir)/../../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.