@@ -0,0 +1,14 @@
+#
+# example library makefile
+
+include ../../Makefile.defs
+auto_gen=
+NAME:=print
+MAJOR_VER=1
+MINOR_VER=2
+BUGFIX_VER=1
+LIBS=
+include ../../Makefile.libs
@@ -0,0 +1,11 @@
+example print library
+--------------
+Description:
+------------
+This library is an example on how to implement a ser specific library
+(see the Makefile).
+See also modules/print_lib for a library usage example.
@@ -0,0 +1,13 @@
+/*
+ * example library
+ */
+#include <stdio.h>
+int stderr_println(char* text)
+{
+ fprintf(stderr, "%s\n", text);
+ return 0;
+}
@@ -0,0 +1,7 @@
+#ifndef _print_h
+#define _print_h
+int stderr_println(char* text);
+#endif