source: rtems/c/src/lib/libbsp/sh/gensh4/startup/Makefile.am @ 968b78d

4.104.114.84.95
Last change on this file since 968b78d was 968b78d, checked in by Ralf Corsepius <ralf.corsepius@…>, on 12/11/03 at 04:09:16

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

  • start/Makefile.am: Misc cleanups and fixes.
  • startup/Makefile.am: Misc cleanups and fixes.
  • Property mode set to 100644
File size: 1.3 KB
Line 
1##
2## $Id$
3##
4
5VPATH = @srcdir@:@srcdir@/../../shared:@srcdir@/../../../shared
6
7PGM = $(ARCH)/startup.rel
8
9C_FILES = bsplibc.c bsppost.c bspstart.c bspclean.c sbrk.c bootcard.c main.c \
10    gnatinstallhandler.c
11
12C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
13
14OBJS = $(C_O_FILES)
15
16include $(top_srcdir)/../../../../automake/compile.am
17include $(top_srcdir)/../../../../automake/lib.am
18
19#
20# (OPTIONAL) Add local stuff here using +=
21#
22
23project_lib_DATA = linkcmds linkcmds.rom linkcmds.rom2ram
24
25$(PGM): $(OBJS)
26        $(make-rel)
27
28all-local: $(TMPINSTALL_FILES) $(PGM)
29
30EXTRA_DIST = bspclean.c bspstart.c linkcmds linkcmds.rom linkcmds.rom2ram
31
32${PROJECT_RELEASE}/lib/linkcmds: linkcmds ${PROJECT_RELEASE}/lib/$(dirstamp)
33        $(INSTALL_DATA) $< ${PROJECT_RELEASE}/lib/linkcmds
34TMPINSTALL_FILES += ${PROJECT_RELEASE}/lib/linkcmds
35
36${PROJECT_RELEASE}/lib/linkcmds.rom: linkcmds.rom ${PROJECT_RELEASE}/lib/$(dirstamp)
37        $(INSTALL_DATA) $< ${PROJECT_RELEASE}/lib/linkcmds.rom
38TMPINSTALL_FILES += ${PROJECT_RELEASE}/lib/linkcmds.rom
39
40${PROJECT_RELEASE}/lib/linkcmds.rom2ram: linkcmds.rom2ram ${PROJECT_RELEASE}/lib/$(dirstamp)
41        $(INSTALL_DATA) $< ${PROJECT_RELEASE}/lib/linkcmds.rom2ram
42TMPINSTALL_FILES += ${PROJECT_RELEASE}/lib/linkcmds.rom2ram
43
44include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.