source: rtems/automake/lib.am @ acd7c408

4.104.114.84.95
Last change on this file since acd7c408 was 35b2275, checked in by Ralf Corsepius <ralf.corsepius@…>, on 07/22/02 at 09:17:40

2002-07-22 Ralf Corsepius <corsepiu@…>

  • aclocal/bsp-configure.m4: Add RTEMS_CHECK_MULTIPROCESSING.
automake/compile.am: Add test -d $(ARCH)
mkdir $(ARCH) to all

compilation rules (Work-around to an automake bug).

automake/lib.am: Add test -d $(ARCH)
mkdir $(ARCH) to

make-library.

  • Property mode set to 100644
File size: 286 bytes
RevLine 
[23e3f642]1##
2##  $Id$
3##
4
[8738dfaa]5## LD = @LD@
[509f8351]6AR = @AR@
7RANLIB = @RANLIB@
8
[a34b245]9ARFLAGS = ruv
10
[23e3f642]11define make-library
[35b2275]12test -d $(ARCH) || mkdir $(ARCH)
[23e3f642]13$(RM) $@
14$(AR) $(ARFLAGS) $@ $^
15$(RANLIB) $@
16endef
17
[35b2275]18$(PROJECT_RELEASE)/lib:
[23e3f642]19        @$(mkinstalldirs) $@
20
[35b2275]21TMPINSTALL_FILES = $(PROJECT_RELEASE)/lib
[0ff37e68]22
[23e3f642]23.PRECIOUS: $(LIB)
Note: See TracBrowser for help on using the repository browser.