source: rtems/c/src/lib/libbsp/arm/armulator/start/Makefile.am @ 3777ea14

4.104.114.84.95
Last change on this file since 3777ea14 was 3777ea14, checked in by Ralf Corsepius <ralf.corsepius@…>, on 08/11/02 at 06:10:10

2002-08-11 Ralf Corsepius <corsepiu@…>

  • clock/Makefile.am: Use .$(OBJEXT) instead of .o.
    • console/Makefile.am: Use .$(OBJEXT) instead of .o.
    • start/Makefile.am: Use .$(OBJEXT) instead of .o.
    • startup/Makefile.am: Use .$(OBJEXT) instead of .o.
    • timer/Makefile.am: Use .$(OBJEXT) instead of .o.
    • wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
  • Property mode set to 100644
File size: 1.0 KB
Line 
1##
2## $Id$
3##
4
5S_FILES = start.S
6S_O_FILES = $(S_FILES:%.c=$(ARCH)/%.$(OBJEXT))
7
8OBJS = $(S_O_FILES)
9
10include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
11include $(top_srcdir)/../../../../../../automake/compile.am
12include $(top_srcdir)/../../../../../../automake/lib.am
13
14#
15# (OPTIONAL) Add local stuff here using +=
16#
17
18# From newlib
19# Select which debug protocol is being used.
20# ARM_RDP_MONITOR selects the Demon monitor.
21# ARM_RDI_MONITOR selects the Angel monitor.
22# If neither are defined, then hard coded defaults will be used
23# to create the program's environment.
24AM_CPPFLAGS += -DARM_RDI_MONITOR
25
26bsplib_DATA = $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).$(OBJEXT)
27
28$(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).$(OBJEXT): $(ARCH)/start.$(OBJEXT)
29        $(INSTALL_DATA) $< $@
30
31TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).$(OBJEXT)
32
33all-local: $(ARCH) $(OBJS) $(ARCH)/start.$(OBJEXT) $(TMPINSTALL_FILES)
34
35.PRECIOUS: $(ARCH)/start.$(OBJEXT)
36
37EXTRA_DIST = start.S
38
39include $(top_srcdir)/../../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.