Files
rtems/automake/lib.am
Joel Sherrill 779654e2af 2000-11-02 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* automake/lib.am: Add LD.
2000-11-02 22:49:07 +00:00

21 lines
235 B
Plaintext

##
## $Id$
##
LD = @LD@
AR = @AR@
RANLIB = @RANLIB@
define make-library
$(RM) $@
$(AR) $(ARFLAGS) $@ $^
$(RANLIB) $@
endef
$(PROJECT_RELEASE)/lib:
@$(mkinstalldirs) $@
TMPINSTALL_FILES = $(PROJECT_RELEASE)/lib
.PRECIOUS: $(LIB)