source: rtems/c/src/lib/libbsp/arm/armulator/start/Makefile.am @ 5ceaa08

4.104.114.84.95
Last change on this file since 5ceaa08 was 5ceaa08, checked in by Ralf Corsepius <ralf.corsepius@…>, on 12/02/03 at 05:42:03

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

  • clock/Makefile.am: Remove all-local: $(ARCH).
  • console/Makefile.am: Remove all-local: $(ARCH).
  • start/Makefile.am: Remove all-local: $(ARCH).
  • startup/Makefile.am: Remove all-local: $(ARCH).
  • timer/Makefile.am: Remove all-local: $(ARCH).
  • wrapup/Makefile.am: Remove all-local: $(ARCH).
  • 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 $(top_srcdir)/../../../../automake/compile.am
11include $(top_srcdir)/../../../../automake/lib.am
12
13#
14# (OPTIONAL) Add local stuff here using +=
15#
16
17# From newlib
18# Select which debug protocol is being used.
19# ARM_RDP_MONITOR selects the Demon monitor.
20# ARM_RDI_MONITOR selects the Angel monitor.
21# If neither are defined, then hard coded defaults will be used
22# to create the program's environment.
23AM_CPPFLAGS += -DARM_RDI_MONITOR
24
25install-data-local: $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).$(OBJEXT)
26        @$(mkinstalldirs) $(DESTDIR)$(bsplibdir)
27        $(INSTALL_DATA) $< $(DESTDIR)$(bsplibdir)
28
29$(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).$(OBJEXT): $(ARCH)/start.$(OBJEXT)
30        $(INSTALL_DATA) $< $@
31
32TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).$(OBJEXT)
33
34all-local: $(OBJS) $(ARCH)/start.$(OBJEXT) $(TMPINSTALL_FILES)
35
36.PRECIOUS: $(ARCH)/start.$(OBJEXT)
37
38EXTRA_DIST = start.S
39
40include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.