source: rtems/c/src/lib/libbsp/m68k/mvme167/wrapup/Makefile.am @ ddd9abf

4.104.114.84.95
Last change on this file since ddd9abf was e31ccfdd, checked in by Joel Sherrill <joel.sherrill@…>, on 03/28/02 at 00:40:39

2002-03-27 Ralf Corsepius <corsepiu@…>

  • configure.ac: AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS). AM_INIT_AUTOMAKE([no-define foreign 1.6]).
  • clock/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • Makefile.am: Remove AUTOMAKE_OPTIONS.
  • console/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • fatal/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • include/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • network/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • start/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • timer/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • Property mode set to 100644
File size: 1.1 KB
Line 
1##
2## $Id$
3##
4
5
6# We only build the networking device driver if HAS_NETWORKING was defined
7if HAS_NETWORKING
8NETWORKING_DRIVER = network
9endif
10
11BSP_PIECES = clock console fatal startup timer $(NETWORKING_DRIVER)
12
13# bummer; have to use $foreach since % pattern subst rules only replace 1x
14OBJS = $(foreach piece, $(BSP_PIECES), $(wildcard ../$(piece)/$(ARCH)/*.o)) \
15    $(wildcard ../../../../libcpu/$(RTEMS_CPU)/shared/*/$(ARCH)/*.o) \
16    $(wildcard ../../../../libcpu/$(RTEMS_CPU)/$(RTEMS_CPU_MODEL)/fpsp/$(ARCH)/fpsp.rel)
17
18LIB = $(ARCH)/libbsp.a
19
20include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
21include $(top_srcdir)/../../../../../../automake/compile.am
22include $(top_srcdir)/../../../../../../automake/lib.am
23
24#
25# (OPTIONAL) Add local stuff here using +=
26#
27
28$(LIB): $(OBJS)
29        $(make-library)
30
31$(PROJECT_RELEASE)/lib/libbsp$(LIB_VARIANT).a: $(LIB)
32        $(INSTALL_DATA) $< $@
33
34TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/libbsp$(LIB_VARIANT).a
35
36all-local: $(ARCH) $(OBJS) $(LIB) $(TMPINSTALL_FILES)
37
38.PRECIOUS: $(LIB)
39
40include $(top_srcdir)/../../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.