Files
rtems/automake/lib.am
Joel Sherrill 8738dfaa7b 2001-09-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* automake/lib.am: Comment out LD.
	* Makefile.am: Use ACLOCAL_FILES = to make automake-1.5 happy; Add
	automake/leaf.am to AUTOMAKE_FILES.
2001-09-27 19:26:39 +00:00

21 lines
238 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)