forked from Imagelibrary/rtems
* 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.
24 lines
286 B
Plaintext
24 lines
286 B
Plaintext
##
|
|
## $Id$
|
|
##
|
|
|
|
## LD = @LD@
|
|
AR = @AR@
|
|
RANLIB = @RANLIB@
|
|
|
|
ARFLAGS = ruv
|
|
|
|
define make-library
|
|
test -d $(ARCH) || mkdir $(ARCH)
|
|
$(RM) $@
|
|
$(AR) $(ARFLAGS) $@ $^
|
|
$(RANLIB) $@
|
|
endef
|
|
|
|
$(PROJECT_RELEASE)/lib:
|
|
@$(mkinstalldirs) $@
|
|
|
|
TMPINSTALL_FILES = $(PROJECT_RELEASE)/lib
|
|
|
|
.PRECIOUS: $(LIB)
|