source: rtems/cpukit/libmisc/wrapup/Makefile.am @ 5e622a9

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

2002-12-12 Ralf Corsepius <corsepiu@…>

Moving libmisc from rtems/c/src to rtems/cpukit.

  • Makefile.am: Reflect new path.
  • configure.ac: Reflect new path. Use RTEMS_ENV_RTEMSCPU instead of RTEMS_ENV_RTEMSBSP. Remove RTEMS_PROJECT_ROOT.
  • capture/Makefile.am: Reflect new path. Remove OBJS from all-local.
  • cpuuse/Makefile.am: Ditto.
  • devnull/Makefile.am: Ditto.
  • dummy/Makefile.am: Ditto.
  • dumpbuf/Makefile.am: Ditto.
  • monitor/Makefile.am: Ditto.
  • mw-fb/Makefile.am: Ditto.
  • rtmonuse/Makefile.am: Ditto.
  • serdbg/Makefile.am: Ditto.
  • shell/Makefile.am: Ditto.
  • stackchk/Makefile.am: Ditto.
  • untar/Makefile.am: Ditto.
  • wrapup/Makefile.am: Reflect new path.
  • Property mode set to 100644
File size: 1.0 KB
Line 
1##
2## $Id$
3##
4
5LIB = $(ARCH)/libmisc.a
6
7include $(top_srcdir)/../automake/compile.am
8include $(top_srcdir)/../automake/lib.am
9
10## XXX temporarily remove this from the list because it causes a
11## XXX number of BSPs to not link "main(){}" used by autoconf
12##    ../serdbg/$(ARCH)/libserdbg-tmp.a
13
14if RTEMS_LIBSHELL
15RTEMS_LIBSHELL = ../shell/$(ARCH)/libshell-tmp.a
16endif
17
18TMP_LIBS = ../monitor/$(ARCH)/libmonitor-tmp.a \
19    ../untar/$(ARCH)/libuntar-tmp.a ../stackchk/$(ARCH)/libstackchk-tmp.a \
20    ../cpuuse/$(ARCH)/libcpuuse-tmp.a ../rtmonuse/$(ARCH)/librtmonuse-tmp.a \
21    $(RTEMS_LIBSHELL) ../dumpbuf/$(ARCH)/libdumpbuf-tmp.a \
22    ../devnull/$(ARCH)/libdevnull-tmp.a ../dummy/$(ARCH)/libdummy-tmp.a \
23    ../mw-fb/$(ARCH)/libmw-fb-tmp.a ../capture/$(ARCH)/libcapture-tmp.a
24
25#
26# (OPTIONAL) Add local stuff here using +=
27#
28
29$(LIB): $(TMP_LIBS)
30        $(RM) $@
31        $(RM) -r $(ARCH)
32        mkdir $(ARCH)
33        cd $(ARCH); for lib in $^; do $(AR) -xv ../$$lib; done
34        $(AR) ruv $@ $(ARCH)/*
35        $(RANLIB) $@
36
37all-local: $(ARCH) $(LIB)
38
39include $(top_srcdir)/../automake/local.am
Note: See TracBrowser for help on using the repository browser.