source: rtems/c/src/lib/libbsp/m68k/gen68360/startup/Makefile.am @ 7bf622e7

4.104.114.84.95
Last change on this file since 7bf622e7 was 7bf622e7, checked in by Ralf Corsepius <ralf.corsepius@…>, on 12/03/03 at 07:33:25

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

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