summaryrefslogtreecommitdiffstats
path: root/make/lib.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'make/lib.cfg')
-rw-r--r--make/lib.cfg18
1 files changed, 0 insertions, 18 deletions
diff --git a/make/lib.cfg b/make/lib.cfg
deleted file mode 100644
index 47afd3e93e..0000000000
--- a/make/lib.cfg
+++ /dev/null
@@ -1,18 +0,0 @@
-#
-# $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)