source: rtems/c/src/wrapup/Makefile.am @ 7fcc26ac

4.104.114.84.95
Last change on this file since 7fcc26ac was 19530ab5, checked in by Joel Sherrill <joel.sherrill@…>, on 09/05/00 at 15:32:08

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

  • wrapup/Makefile.am: Include compile.am.
  • Property mode set to 100644
File size: 2.0 KB
Line 
1##
2##  $Id$
3##
4##  build and install "glommed" librtemsall.a
5##
6
7AUTOMAKE_OPTIONS = foreign 1.4
8
9include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
10include $(top_srcdir)/../../automake/compile.am
11include $(top_srcdir)/../../automake/lib.am
12
13LIB = $(PROJECT_RELEASE)/lib/librtemsall${LIB_VARIANT}.a
14
15if HAS_NETWORKING
16LIBNETWORKING = $(PROJECT_RELEASE)/lib/libnetworking$(LIB_VARIANT).a \
17    $(wildcard $(PROJECT_RELEASE)/lib/librpc$(LIB_VARIANT).a) \
18    $(wildcard $(PROJECT_RELEASE)/lib/libxdr$(LIB_VARIANT).a)
19endif
20
21if HAS_RDBG
22LIBRDBG = $(PROJECT_RELEASE)/lib/librdbg$(LIB_VARIANT).a
23endif
24
25SRCS = $(wildcard $(PROJECT_RELEASE)/lib/libbsp$(LIB_VARIANT).a) \
26    $(PROJECT_RELEASE)/lib/librtems$(LIB_VARIANT).a \
27    $(wildcard $(PROJECT_RELEASE)/lib/libposix$(LIB_VARIANT).a) \
28    $(wildcard $(PROJECT_RELEASE)/lib/libitron$(LIB_VARIANT).a) \
29    $(LIBNETWORKING) $(LIBRDBG) \
30    $(wildcard $(PROJECT_RELEASE)/lib/libcpu$(LIB_VARIANT).a) \
31    $(wildcard $(PROJECT_RELEASE)/lib/librtcio$(LIB_VARIANT).a) \
32    $(wildcard $(PROJECT_RELEASE)/lib/libserialio$(LIB_VARIANT).a) \
33    $(wildcard $(PROJECT_RELEASE)/lib/libnetchip$(LIB_VARIANT).a) \
34    $(PROJECT_RELEASE)/lib/libcsupport$(LIB_VARIANT).a \
35    $(PROJECT_RELEASE)/lib/libmisc$(LIB_VARIANT).a \
36    $(wildcard $(PROJECT_RELEASE)/lib/rtems-ctor$(LIB_VARIANT).o)
37
38TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/librtemsall${LIB_VARIANT}.a
39
40all-local: $(ARCH) $(TMPINSTALL_FILES)
41
42$(LIB): $(SRCS)
43        rm -f $@
44        rm -rf $(ARCH)/*
45        for f in $(SRCS); do \
46          case $$f in \
47          *.o | *.rel) \
48            if test -f $(ARCH)/`basename $$f`; then \
49              if cmp $$f $(ARCH)/`basename $$f`; then \
50                true; \
51              else \
52                echo 1>&2 "ERROR -- `basename $$f` in multiple files"; \
53                exit 1; \
54              fi; \
55            else \
56              cp $$f $(ARCH)/; \
57              chmod a-w $(ARCH)/`basename $$f`; \
58            fi; \
59            ;; \
60          *.a) \
61            (cd $(ARCH); \
62             $(AR) x ../$$f; \
63             test $$? -eq 0 || exit 1; \
64             chmod a-w *; ) \
65            ;; \
66          esac; \
67        done
68        $(AR) rc $@ $(ARCH)/*
69        rm -f $(ARCH)/*
70        $(RANLIB) $@
71
72include $(top_srcdir)/../../automake/local.am
Note: See TracBrowser for help on using the repository browser.