source: rtems/c/src/lib/libbsp/m68k/ods68302/startup/Makefile.am @ fb8b61a

4.104.114.84.95
Last change on this file since fb8b61a was 5ceaa08, checked in by Ralf Corsepius <ralf.corsepius@…>, on 12/02/03 at 05:42:03

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

  • clock/Makefile.am: Remove all-local: $(ARCH).
  • console/Makefile.am: Remove all-local: $(ARCH).
  • start/Makefile.am: Remove all-local: $(ARCH).
  • startup/Makefile.am: Remove all-local: $(ARCH).
  • timer/Makefile.am: Remove all-local: $(ARCH).
  • wrapup/Makefile.am: Remove all-local: $(ARCH).
  • Property mode set to 100644
File size: 1.2 KB
Line 
1##
2## $Id$
3##
4
5
6VPATH = @srcdir@:@srcdir@/../../shared:@srcdir@/../../../shared
7
8PGM = $(ARCH)/startup.rel
9
10C_FILES = cpuboot.c crc.c debugport.c gdb-hooks.c bootcard.c main.c \
11    m68302scc.c m68k-stub.c m68kpretaskinghook.c memcheck.c trace.c \
12    gnatinstallhandler.c bsplibc.c bsppost.c bspstart.c bspclean.c sbrk.c \
13    setvec.c
14C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
15
16OBJS = $(C_O_FILES)
17
18include $(top_srcdir)/../../../../automake/compile.am
19include $(top_srcdir)/../../../../automake/lib.am
20
21#
22# (OPTIONAL) Add local stuff here using +=
23#
24
25$(PGM): $(OBJS)
26        $(make-rel)
27
28bsplib_DATA = linkcmds rom debugger
29
30$(PROJECT_RELEASE)/lib/linkcmds: linkcmds
31        $(INSTALL_DATA) $< $@
32
33$(PROJECT_RELEASE)/lib/rom: rom
34        $(INSTALL_DATA) $< $@
35
36$(PROJECT_RELEASE)/lib/debugger: debugger
37        $(INSTALL_DATA) $< $@
38
39# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
40TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/linkcmds \
41    $(PROJECT_RELEASE)/lib/rom $(PROJECT_RELEASE)/lib/debugger
42
43all-local: $(OBJS) $(PGM) $(TMPINSTALL_FILES)
44
45.PRECIOUS: $(PGM)
46
47EXTRA_DIST = bspclean.c bspstart.c crc.c debugger debugport.c gdb-hooks.c \
48    linkcmds m68302scc.c m68k-stub.c memcheck.c rom trace.c
49
50include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.