source: rtems/c/src/lib/libbsp/i960/rxgen960/startup/Makefile.am @ 5c269019

4.104.114.84.95
Last change on this file since 5c269019 was 5c269019, checked in by Ralf Corsepius <ralf.corsepius@…>, on 12/03/03 at 06:58:03

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

  • Makefile.am: Add preinstallation dirstamp support.
  • clock/Makefile.am: Cosmetics.
  • console/Makefile.am: Cosmetics.
  • start/Makefile.am: Cosmetics.
  • startup/Makefile.am: Cosmetics.
  • timer/Makefile.am: Cosmetics.
  • wrapup/Makefile.am: Cosmetics.
  • Property mode set to 100644
File size: 1.7 KB
Line 
1##
2## $Id$
3##
4
5VPATH = @srcdir@:@srcdir@/../../../shared
6
7PGM = $(ARCH)/startup.rel
8
9#C_PIECES = bspclean bsplibc bsppost bspstart bootcard main sbrk setvec \
10#    gnatinstallhandler
11C_FILES = bspclean.c bsplibc.c bsppost.c bspstart.c bootcard.c cntrltbl.c \
12    exit.c fault.c flttbl.c frmstr.c intrtbl.c kkprintf.c main.c nmi.c \
13    nulsystbl.c prcb.c rom_cntrltbl.c rom_ibr.c rom_prcb.c sbrk.c sctns.c \
14    setvec.c systbl.c
15
16noinst_HEADERS = asmfault.h asmstub.h cntrltbl.h fault.h faultret.h flttbl.h \
17    frmstr.h i960.h ihandler.h intrtbl.h main.h memchnl.h pmc901_memmap.h \
18    prcb.h rom_ibr.h rommon.h sctns.h systbl.h time.h
19
20S_FILES = asmfault.S asmstub.S ihandler.S
21
22OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) \
23    $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT))
24
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
35bsplib_DATA = linkcmds
36
37$(PROJECT_RELEASE)/lib/linkcmds: linkcmds
38        $(INSTALL_DATA) $< $@
39
40# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
41
42TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/linkcmds
43
44all-local: $(OBJS) $(PGM) $(TMPINSTALL_FILES)
45
46.PRECIOUS: $(PGM)
47
48EXTRA_DIST = asmfault.S asmfault.h asmstub.S asmstub.h bspstart.c cntrltbl.c \
49    cntrltbl.h dram.ld exit.c fault.c fault.h faultret.h flttbl.c flttbl.h \
50    frmstr.c frmstr.h i960.h ihandler.S ihandler.h intrtbl.c intrtbl.h \
51    kkprintf.c linkcmds main.h memchnl.h nmi.c nulsystbl.c pmc901_memmap.h \
52    prcb.c prcb.h rom.ld rom_cntrltbl.c rom_ibr.c rom_ibr.h rom_prcb.c \
53    rommon.h rxgen_romld.S sctns.c sctns.h setvec.c systbl.c systbl.h \
54    time.h
55
56include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.