source: rtems/c/src/lib/libbsp/m68k/ods68302/start/Makefile.am @ ef39005

4.104.114.84.95
Last change on this file since ef39005 was ef39005, checked in by Joel Sherrill <joel.sherrill@…>, on 08/08/02 at 16:41:46

2002-08-07 Joel Sherrill <joel@…>

  • start/Makefile.am: Pick up rest of Ralf'f changes and use cp not make-rel since there is no point in this case.
  • start/debugreset.S: Rights were not assigned.
  • start/reset.S: Add ifdef to avoid core dump until Chris can track it down.
  • start/cpuboot.c: Moved to startup.
  • startup/Makefile.am: Account for above.
  • Property mode set to 100644
File size: 982 bytes
Line 
1##
2## $Id$
3##
4
5# FIXME: Better merge both files into one and use #ifdef GDB_MONITOR_ACTIVE
6if ODS68302_DEBUG
7RESET_S_FILES = debugreset.S
8else
9RESET_S_FILES = reset.S
10endif
11
12S_FILES = $(RESET_S_FILES)
13S_O_FILES = $(S_FILES:%.S=$(ARCH)/%.o)
14
15OBJS = $(S_O_FILES) $(C_O_FILES)
16
17include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
18include $(top_srcdir)/../../../../../../automake/compile.am
19include $(top_srcdir)/../../../../../../automake/lib.am
20
21#
22# (OPTIONAL) Add local stuff here using +=
23#
24
25AM_CFLAGS += $(CFLAGS_V)
26
27bsplib_DATA = $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).o
28
29$(ARCH)/start.o: $(OBJS)
30        cp $(S_O_FILES) $(ARCH)/start.o
31
32$(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).o: $(ARCH)/start.o
33        $(INSTALL_DATA) $< $@
34
35TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).o
36
37all-local: $(ARCH) $(OBJS) $(ARCH)/start.o $(TMPINSTALL_FILES)
38
39.PRECIOUS: $(ARCH)/start.o
40
41EXTRA_DIST = cpuboot.c debugreset.S reset.S
42
43include $(top_srcdir)/../../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.