source: rtems/cpukit/libmisc/wrapup/Makefile.am @ 84206479

4.104.114.84.95
Last change on this file since 84206479 was 84206479, checked in by Ralf Corsepius <ralf.corsepius@…>, on 08/30/02 at 13:13:07

2002-08-30 Ralf Corsepius <corsepiu@…>

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