source: rtems/c/src/libmisc/wrapup/Makefile.in @ f7fa7d7

4.104.114.84.95
Last change on this file since f7fa7d7 was 674c900, checked in by Joel Sherrill <joel.sherrill@…>, on 12/10/97 at 16:58:00

Modified a lot of files to take a first cut at supporting building from
any directory in the build tree. The only variable which must be set
before the command "gmake" is invoked is RTEMS_BSP (e.g. RTEMS_BSP=erc32).

  • Property mode set to 100644
File size: 1020 bytes
Line 
1#
2#  $Id$
3#
4
5@SET_MAKE@
6srcdir = @srcdir@
7top_srcdir = @top_srcdir@
8VPATH = @srcdir@
9RTEMS_ROOT = @RTEMS_ROOT@
10PROJECT_ROOT = @PROJECT_ROOT@
11RTEMS_CUSTOM = $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
12
13LIB=$(ARCH)/libmisc.a
14
15include $(RTEMS_CUSTOM)
16include $(PROJECT_ROOT)/make/lib.cfg
17
18#  Using the wildcard on the Purify support makes sure it may not be there
19
20LIBS=../monitor/$(ARCH)/libmonitor-tmp.a \
21     ../error/$(ARCH)/liberror-tmp.a \
22     ../assoc/$(ARCH)/libassoc-tmp.a \
23     ../stackchk/$(ARCH)/libstackchk-tmp.a \
24     ../cpuuse/$(ARCH)/libcpuuse-tmp.a \
25     ../rtmonuse/$(ARCH)/librtmonuse-tmp.a \
26     $(wildcard ../purify/$(ARCH)/libpurify-tmp.a)
27RELS=
28
29CLEAN_ADDITIONS +=
30CLOBBER_ADDITIONS +=
31
32$(LIB): ${LIBS} $(RELS)
33        $(RM) -r $(ARCH)
34        $(MKDIR) $(ARCH)
35        cd $(ARCH); for lib in $(LIBS:%=../%); do \
36                         $(AR) -xv $$lib; \
37                    done
38        $(RM) $@
39        $(AR) ruv $@ $(ARCH)/*
40        $(MKLIB) $@
41
42all:    ${ARCH} $(SRCS) $(LIB)
43        $(INSTALL_VARIANT) -m 644 $(LIB) ${PROJECT_RELEASE}/lib
44
Note: See TracBrowser for help on using the repository browser.