[gedit/wip/gtef: 1/8] Create Gtef



commit 73a383690fabbdae4b4c8af88f69e3a8f9f27740
Author: Sébastien Wilmet <swilmet gnome org>
Date:   Mon Apr 25 15:22:43 2016 +0200

    Create Gtef
    
    Gtef will be the GNOME Text Editor Framework. To continue making the
    gedit source code more re-usable.
    
    A new directory is created. Once that directory contains a good chunk of
    re-usable code, Gtef could be moved to its own git repo, and create a
    shared library. But as a first step let's do it inside gedit first, as a
    private static library. Plugins will not have access to Gtef, at least
    not at the beginning.

 Makefile.am            |    1 +
 gedit/gtef/Makefile.am |   22 ++++++++++++++++++++++
 2 files changed, 23 insertions(+), 0 deletions(-)
---
diff --git a/Makefile.am b/Makefile.am
index 0769fb9..653d392 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -93,6 +93,7 @@ include win32/Makefile.am
 include osx/bundle/data/Makefile.am
 include plugins/Makefile.am
 include gedit/Makefile.am
+include gedit/gtef/Makefile.am
 
 @GSETTINGS_RULES@
 
diff --git a/gedit/gtef/Makefile.am b/gedit/gtef/Makefile.am
new file mode 100644
index 0000000..4445aee
--- /dev/null
+++ b/gedit/gtef/Makefile.am
@@ -0,0 +1,22 @@
+noinst_LTLIBRARIES += gedit/gtef/libgtef.la
+
+gedit_gtef_libgtef_la_CPPFLAGS =       \
+       -I$(top_srcdir)/gedit/gtef      \
+       -I$(top_builddir)/gedit/gtef
+
+gedit_gtef_libgtef_la_CFLAGS =         \
+       $(GEDIT_CFLAGS)                 \
+       $(GTK_MAC_CFLAGS)               \
+       $(WARN_CFLAGS)                  \
+       $(DISABLE_DEPRECATED_CFLAGS)    \
+       $(INTROSPECTION_CFLAGS)
+
+gedit_gtef_libgtef_la_LIBADD =         \
+       $(GEDIT_LIBS)                   \
+       $(GTK_MAC_LIBS)                 \
+       $(INTROSPECTION_LIBS)
+
+gedit_gtef_libgtef_la_LDFLAGS =                \
+       -no-undefined
+
+gedit_gtef_libgtef_la_SOURCES =


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]