summaryrefslogtreecommitdiff
path: root/automake
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-11-23 14:10:05 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-11-23 14:10:05 +0000
commit23e3f642e4f0753029b4bd4d444cd94b8f4bb4c6 (patch)
treee514d60d91bdb207f0ef720199ef8d1e21e80ca5 /automake
parent9f4868cea9c37ff42c0c01dd217c6710a6dda2aa (diff)
Missed in previous automake conversion patches from Ralf Corsepius
<corsepiu@faw.uni-ulm.de>.
Diffstat (limited to 'automake')
-rw-r--r--automake/lib.am18
1 files changed, 18 insertions, 0 deletions
diff --git a/automake/lib.am b/automake/lib.am
new file mode 100644
index 0000000000..85c8c09e95
--- /dev/null
+++ b/automake/lib.am
@@ -0,0 +1,18 @@
+##
+## $Id$
+##
+
+include $(RTEMS_ROOT)/make/leaf.cfg
+
+define make-library
+$(RM) $@
+$(AR) $(ARFLAGS) $@ $^
+$(RANLIB) $@
+endef
+
+TMPINSTALL_FILES = $(PROJECT_RELEASE)/lib
+
+$(PROJECT_INCLUDE)/lib:
+ @$(mkinstalldirs) $@
+
+.PRECIOUS: $(LIB)