source: rtems/c/src/lib/libbsp/arm/armulator/start/Makefile.am @ 0b34e440

4.104.114.84.95
Last change on this file since 0b34e440 was c304bc3, checked in by Ralf Corsepius <ralf.corsepius@…>, on 07/20/02 at 15:59:32

2002-07-20 Ralf Corsepius <corsepiu@…>

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