forked from Imagelibrary/rtems
* lib.cfg: include $(PROJECT_ROOT)/make/leaf.cfg * main.cfg: Set PROJECT_RELEASE=$(exec_prefix)/$(RTEMS_BSP). * host.cfg.in: Remove RM, make-script. * ChangeLog: Remove bogus 2001-01-22 entry.
19 lines
279 B
INI
19 lines
279 B
INI
#
|
|
# $Id$
|
|
#
|
|
# make/lib.cfg
|
|
#
|
|
# Make(1) configuration file include'd by all "library" Makefile
|
|
# Assumes $(LIB) is set to $(ARCH)/libfoo.a
|
|
#
|
|
|
|
include $(PROJECT_ROOT)/make/leaf.cfg
|
|
|
|
define make-library
|
|
$(RM) $@
|
|
$(AR) $(ARFLAGS) $@ $(OBJS)
|
|
$(RANLIB) $@
|
|
endef
|
|
|
|
.PRECIOUS: $(LIB)
|