[rtems commit] Resurrect make/Templates/Makefile.lib

Sebastian Huber sebh at rtems.org
Thu Nov 5 10:52:38 UTC 2015


Module:    rtems
Branch:    master
Commit:    c1e98cd45aa89e5cc3e54b432239c0179ee92f4e
Changeset: http://git.rtems.org/rtems/commit/?id=c1e98cd45aa89e5cc3e54b432239c0179ee92f4e

Author:    Sebastian Huber <sebastian.huber at embedded-brains.de>
Date:      Thu Nov  5 11:51:20 2015 +0100

Resurrect make/Templates/Makefile.lib

This file was accidentally removed by
370c09a1f4012139aebabb4f2c9ec081855fc94d.

---

 make/Templates/Makefile.lib | 58 +++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 58 insertions(+)

diff --git a/make/Templates/Makefile.lib b/make/Templates/Makefile.lib
new file mode 100644
index 0000000..92d92a5
--- /dev/null
+++ b/make/Templates/Makefile.lib
@@ -0,0 +1,58 @@
+#
+#       Template library Makefile
+#
+
+LIBNAME=libfoo.a        # xxx- your library names goes here
+LIB=${ARCH}/${LIBNAME}
+
+# C and C++ source names, if any, go here -- minus the .c or .cc
+C_PIECES=xxxd xxxe xxxf
+C_FILES=$(C_PIECES:%=%.c)
+C_O_FILES=$(C_PIECES:%=${ARCH}/%.o)
+
+CC_PIECES=xxxa xxxb xxxc
+CC_FILES=$(CC_PIECES:%=%.cc)
+CC_O_FILES=$(CC_PIECES:%=${ARCH}/%.o)
+
+H_FILES=
+
+# Assembly source names, if any, go here -- minus the .S
+S_PIECES=
+S_FILES=$(S_PIECES:%=%.S)
+S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
+
+SRCS=$(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
+OBJS=$(C_O_FILES) $(CC_O_FILES) $(S_O_FILES)
+
+include $(RTEMS_MAKEFILE_PATH)/Makefile.inc
+
+include $(RTEMS_CUSTOM)
+include $(RTEMS_ROOT)/make/lib.cfg
+
+#
+# Add local stuff here using +=
+#
+
+DEFINES  +=
+CPPFLAGS +=
+CFLAGS   +=
+
+#
+# Add your list of files to delete here.  The config files
+#  already know how to delete some stuff, so you may want
+#  to just run 'make clean' first to see what gets missed.
+#  'make clobber' already includes 'make clean'
+#
+
+CLEAN_ADDITIONS += xxx-your-debris-goes-here
+CLOBBER_ADDITIONS +=
+
+all:	${ARCH} $(SRCS) $(LIB)
+
+$(LIB): ${OBJS}
+	$(make-library)
+
+# Install the library, appending _g or _p as appropriate.
+# for include files, just use $(INSTALL_CHANGE)
+install:  all
+	$(INSTALL_VARIANT) -m 644 ${LIB} ${PROJECT_RELEASE}/lib




More information about the vc mailing list