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