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

4.104.114.84.95
Last change on this file since cb5bfe4 was cb5bfe4, checked in by Joel Sherrill <joel.sherrill@…>, on 01/20/98 at 19:41:09

Removed CONFIG_DIR and PROJECT_HOME directories.

  • Property mode set to 100644
File size: 1018 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 $(RTEMS_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.