forked from Imagelibrary/rtems
* aclocal/canonicalize-tools.m4: Remove LD. * automake/lib.am: Remove LD. * Makefile.am: Put preinstall-stamp into CLEANFILES.
22 lines
258 B
Plaintext
22 lines
258 B
Plaintext
##
|
|
## $Id$
|
|
##
|
|
|
|
AR = @AR@
|
|
RANLIB = @RANLIB@
|
|
|
|
ARFLAGS = ruv
|
|
|
|
define make-library
|
|
$(RM) $@
|
|
$(AR) $(ARFLAGS) $@ $^
|
|
$(RANLIB) $@
|
|
endef
|
|
|
|
$(project_libdir)$(MULTISUBDIR):
|
|
@$(mkinstalldirs) $@
|
|
|
|
TMPINSTALL_FILES = $(project_libdir)$(MULTISUBDIR)
|
|
|
|
.PRECIOUS: $(LIB)
|