source: rtems/c/src/libmisc/wrapup/Makefile.am @ 6e9746a2

4.104.114.84.95
Last change on this file since 6e9746a2 was a923a82, checked in by Joel Sherrill <joel.sherrill@…>, on 05/15/02 at 16:36:10

2002-05-16 Chris Johns <ccj@…>

  • Per PR194, added the Capture engine.
  • capture/Makefile.am, capture/README, capture/capture-cli.c, capture/capture-cli.h, capture/capture.c, capture/capture.h, capture/.cvsignore: New files.
  • Makefile.am, configure.ac, wrapup/Makefile.am: Modified to reflect addition.
  • Property mode set to 100644
File size: 1.1 KB
Line 
1##
2## $Id$
3##
4
5
6LIBNAME = libmisc
7LIB = $(ARCH)/$(LIBNAME).a
8
9include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
10include $(top_srcdir)/../../../automake/compile.am
11include $(top_srcdir)/../../../automake/lib.am
12
13if HAS_NETWORKING
14NETLIBS=../rootfs/$(ARCH)/librootfs-tmp.a
15endif
16
17TMP_LIBS = ../monitor/$(ARCH)/libmonitor-tmp.a \
18    ../untar/$(ARCH)/libuntar-tmp.a ../stackchk/$(ARCH)/libstackchk-tmp.a \
19    ../cpuuse/$(ARCH)/libcpuuse-tmp.a ../rtmonuse/$(ARCH)/librtmonuse-tmp.a \
20    ../shell/$(ARCH)/libshell-tmp.a ../dumpbuf/$(ARCH)/libdumpbuf-tmp.a \
21    ../devnull/$(ARCH)/libdevnull-tmp.a ../dummy/$(ARCH)/libdummy-tmp.a \
22    ../mw-fb/$(ARCH)/libmw-fb-tmp.a ../capture/$(ARCH)/libcapture-tmp.a
23
24$(PROJECT_RELEASE)/lib/$(LIBNAME)$(LIB_VARIANT).a: $(LIB)
25        $(INSTALL_DATA) $< $@
26
27#
28# (OPTIONAL) Add local stuff here using +=
29#
30
31$(LIB): $(TMP_LIBS)
32        $(RM) $@
33        $(RM) -r $(ARCH)
34        mkdir $(ARCH)
35        cd $(ARCH); for lib in $^; do $(AR) -xv ../$$lib; done
36        $(AR) ruv $@ $(ARCH)/*
37        $(RANLIB) $@
38
39TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/$(LIBNAME)$(LIB_VARIANT).a
40
41all-local: $(ARCH) $(LIB) $(TMPINSTALL_FILES)
42
43.PRECIOUS: $(LIB)
44
45include $(top_srcdir)/../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.