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

4.104.114.84.95
Last change on this file since 6777b24 was 6777b24, checked in by Ralf Corsepius <ralf.corsepius@…>, on 12/03/03 at 14:38:28

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

  • Makefile.am: Add preinstallation dirstamp support.
  • PCI_bus/Makefile.am: Cosmetics.
  • clock/Makefile.am: Cosmetics.
  • console/Makefile.am: Cosmetics.
  • startup/Makefile.am: Cosmetics.
  • timer/Makefile.am: Cosmetics.
  • tod/Makefile.am: Cosmetics.
  • vectors/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
6
7PGM = $(ARCH)/startup.rel
8
9#
10# First and second generation used different Bridge chips :(
11#       Generation 1 --> 82378zb (now in the CVS Attic)
12#       Generation 2 --> FPGA
13STARTUP_C_FILES = FPGA.c
14
15C_FILES = bspclean.c bsplibc.c bsppost.c bspstart.c bootcard.c main.c sbrk.c \
16    setvec.c Hwr_init.c spurious.c genpvec.c $(STARTUP_C_FILES) \
17    gnatinstallhandler.c
18C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
19
20OBJS = $(C_O_FILES)
21
22include $(top_srcdir)/../../../../automake/compile.am
23include $(top_srcdir)/../../../../automake/lib.am
24
25#
26# (OPTIONAL) Add local stuff here using +=
27#
28
29$(PGM): $(OBJS)
30        $(make-rel)
31
32bsplib_DATA = linkcmds
33
34$(PROJECT_RELEASE)/lib/linkcmds: linkcmds
35        $(INSTALL_DATA) $< $@
36
37TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/linkcmds
38
39all-local: $(OBJS) $(PGM) $(TMPINSTALL_FILES)
40
41.PRECIOUS: $(PGM)
42
43EXTRA_DIST = FPGA.c Hwr_init.c bspclean.c bspstart.c genpvec.c linkcmds \
44    setvec.c spurious.c vmeintr.c
45
46include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.