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

4.104.114.84.95
Last change on this file since 18e5d86 was 18e5d86, checked in by Joel Sherrill <joel.sherrill@…>, on 04/11/97 at 18:40:04

removed commented out line performing a link

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