source: rtems/c/src/lib/libbsp/mips64orion/p4000/wrapup/Makefile.am @ 4906d72f

4.104.114.84.95
Last change on this file since 4906d72f was fdab2b6, checked in by Joel Sherrill <joel.sherrill@…>, on 09/05/00 at 15:50:17

2000-09-04 Ralf Corsepius <corsepiu@…>

  • console/Makefile.am, liblnk/Makefile.am, start/Makefile.am, startup/Makefile.am, wrapup/Makefile.am: Include compile.am
  • Property mode set to 100644
File size: 907 bytes
Line 
1##
2## $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6
7BSP_FILES = startup console liblnk
8CPU_FILES = clock timer
9
10# bummer; have to use $foreach since % pattern subst rules only replace 1x
11OBJS = $(foreach piece, $(BSP_FILES), $(wildcard ../$(piece)/$(ARCH)/*.o)) \
12    $(foreach piece, $(CPU_FILES), ../../../../libcpu/$(RTEMS_CPU)/$(piece)/$(ARCH)/$(piece).rel)
13LIB = $(ARCH)/libbsp.a
14
15include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
16include $(top_srcdir)/../../../../../../automake/compile.am
17include $(top_srcdir)/../../../../../../automake/lib.am
18
19#
20# (OPTIONAL) Add local stuff here using +=
21#
22
23$(LIB): $(OBJS)
24        $(make-library)
25
26$(PROJECT_RELEASE)/lib/libbsp$(LIB_VARIANT).a: $(LIB)
27        $(INSTALL_DATA) $< $@
28
29TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/libbsp$(LIB_VARIANT).a
30
31all-local: $(ARCH) $(OBJS) $(LIB) $(TMPINSTALL_FILES)
32
33.PRECIOUS: $(LIB)
34
35include $(top_srcdir)/../../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.