source: rtems/c/src/lib/libbsp/sh/simsh4/startup/Makefile.am @ 758629c

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

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

  • clock/Makefile.am: Misc cleanups and fixes.
  • start/Makefile.am: Misc cleanups and fixes.
  • startup/Makefile.am: Misc cleanups and fixes.
  • timer/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 = hw_init.c bsplibc.c bsppost.c bspstart.c bspclean.c sbrk.c \
10    bootcard.c main.c gnatinstallhandler.c
11C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
12
13OBJS = $(C_O_FILES)
14
15include $(top_srcdir)/../../../../automake/compile.am
16include $(top_srcdir)/../../../../automake/lib.am
17
18#
19# (OPTIONAL) Add local stuff here using +=
20#
21
22project_lib_DATA = linkcmds linkcmds-le linkcmds-le.coff
23
24$(PGM): $(OBJS)
25        $(make-rel)
26
27all-local: $(TMPINSTALL_FILES) $(PGM)
28
29EXTRA_DIST = bspclean.c bspstart.c hw_init.c linkcmds linkcmds-le \
30    linkcmds-le.coff
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-le: linkcmds-le ${PROJECT_RELEASE}/lib/$(dirstamp)
37        $(INSTALL_DATA) $< ${PROJECT_RELEASE}/lib/linkcmds-le
38TMPINSTALL_FILES += ${PROJECT_RELEASE}/lib/linkcmds-le
39
40${PROJECT_RELEASE}/lib/linkcmds-le.coff: linkcmds-le.coff ${PROJECT_RELEASE}/lib/$(dirstamp)
41        $(INSTALL_DATA) $< ${PROJECT_RELEASE}/lib/linkcmds-le.coff
42TMPINSTALL_FILES += ${PROJECT_RELEASE}/lib/linkcmds-le.coff
43
44include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.