SF.net SVN: geany-plugins:[1712] trunk/geany-plugins/geanygendoc/src/ Makefile.am

hyperair at users.sourceforge.net hyperair at xxxxx
Fri Nov 5 18:36:39 UTC 2010


Revision: 1712
          http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1712&view=rev
Author:   hyperair
Date:     2010-11-05 18:36:39 +0000 (Fri, 05 Nov 2010)

Log Message:
-----------
Hook up GeanyGenDoc to the new variables

GLIB_CFLAGS, GIO_CFLAGS, GTK_CFLAGS and CTPL_CFLAGS have been combined
into GEANYGENDOC_CFLAGS as a result of the new helper macro
GP_CHECK_PLUGIN_DEPS. The same has been done for _LIBS

Modified Paths:
--------------
    trunk/geany-plugins/geanygendoc/src/Makefile.am

Modified: trunk/geany-plugins/geanygendoc/src/Makefile.am
===================================================================
--- trunk/geany-plugins/geanygendoc/src/Makefile.am	2010-11-05 18:36:10 UTC (rev 1711)
+++ trunk/geany-plugins/geanygendoc/src/Makefile.am	2010-11-05 18:36:39 UTC (rev 1712)
@@ -7,39 +7,41 @@
 EXTRA_LTLIBRARIES = geanygendoc.la
 endif
 
-geanygendoc_la_SOURCES = ggd.c \
-                         ggd-doc-setting.c \
-                         ggd-doc-type.c \
-                         ggd-file-type.c \
-                         ggd-file-type-loader.c \
-                         ggd-file-type-manager.c \
-                         ggd-tag-utils.c \
-                         ggd-options.c \
-                         ggd-plugin.c \
-                         ggd-utils.c \
-                         ggd-widget-frame.c \
-                         ggd-widget-doctype-selector.c
-noinst_HEADERS         = ggd.h \
-                         ggd-doc-setting.h \
-                         ggd-doc-type.h \
-                         ggd-file-type.h \
-                         ggd-file-type-loader.h \
-                         ggd-file-type-manager.h \
-                         ggd-tag-utils.h \
-                         ggd-macros.h \
-                         ggd-options.h \
-                         ggd-plugin.h \
-                         ggd-utils.h \
-                         ggd-widget-frame.h \
-                         ggd-widget-doctype-selector.h
-geanygendoc_la_CPPFLAGS= -DG_LOG_DOMAIN=\"GeanyGenDoc\"
-geanygendoc_la_CFLAGS  = $(AM_CFLAGS) \
-                         @GLIB_CFLAGS@ \
-                         @GIO_CFLAGS@ \
-                         @GTK_CFLAGS@ \
-                         @CTPL_CFLAGS@
-geanygendoc_la_LIBADD  = $(COMMONLIBS) \
-                         @GLIB_LIBS@ \
-                         @GIO_LIBS@ \
-                         @GTK_LIBS@ \
-                         @CTPL_LIBS@
+geanygendoc_la_SOURCES = \
+	ggd.c \
+	ggd-doc-setting.c \
+	ggd-doc-type.c \
+	ggd-file-type.c \
+	ggd-file-type-loader.c \
+	ggd-file-type-manager.c \
+	ggd-tag-utils.c \
+	ggd-options.c \
+	ggd-plugin.c \
+	ggd-utils.c \
+	ggd-widget-frame.c \
+	ggd-widget-doctype-selector.c
+
+noinst_HEADERS = \
+	ggd.h \
+	ggd-doc-setting.h \
+	ggd-doc-type.h \
+	ggd-file-type.h \
+	ggd-file-type-loader.h \
+	ggd-file-type-manager.h \
+	ggd-tag-utils.h \
+	ggd-macros.h \
+	ggd-options.h \
+	ggd-plugin.h \
+	ggd-utils.h \
+	ggd-widget-frame.h \
+	ggd-widget-doctype-selector.h
+
+geanygendoc_la_CPPFLAGS = -DG_LOG_DOMAIN=\"GeanyGenDoc\"
+
+geanygendoc_la_CFLAGS = \
+	$(AM_CFLAGS) \
+	$(GEANYGENDOC_CFLAGS)
+
+geanygendoc_la_LIBADD =
+	$(COMMONLIBS) \
+	$(GEANYGENDOC_LIBS)


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.



More information about the Plugins-Commits mailing list