Revision: 735 http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=735&view=rev Author: hyperair Date: 2009-06-14 17:26:30 +0000 (Sun, 14 Jun 2009)
Log Message: ----------- Split vars.mk
* vars.build.mk: Sourced by Makefile.am's which build stuff * vars.docs.mk: Sourced by plugin directories which need README, AUTHORS, installed
Modified Paths: -------------- trunk/geany-plugins/addons/Makefile.am trunk/geany-plugins/addons/src/Makefile.am trunk/geany-plugins/geanygdb/Makefile.am trunk/geany-plugins/geanygdb/src/Makefile.am trunk/geany-plugins/geanylatex/Makefile.am trunk/geany-plugins/geanylatex/src/Makefile.am trunk/geany-plugins/geanylipsum/Makefile.am trunk/geany-plugins/geanylipsum/src/Makefile.am trunk/geany-plugins/geanysendmail/Makefile.am trunk/geany-plugins/geanysendmail/src/Makefile.am trunk/geany-plugins/shiftcolumn/Makefile.am trunk/geany-plugins/shiftcolumn/src/Makefile.am trunk/geany-plugins/spellcheck/Makefile.am trunk/geany-plugins/spellcheck/src/Makefile.am
Added Paths: ----------- trunk/geany-plugins/build/vars.build.mk trunk/geany-plugins/build/vars.docs.mk
Removed Paths: ------------- trunk/geany-plugins/build/vars.mk
Modified: trunk/geany-plugins/addons/Makefile.am =================================================================== --- trunk/geany-plugins/addons/Makefile.am 2009-06-14 17:22:28 UTC (rev 734) +++ trunk/geany-plugins/addons/Makefile.am 2009-06-14 17:26:30 UTC (rev 735) @@ -1 +1,4 @@ +include $(top_srcdir)/build/vars.docs.mk + SUBDIRS = src +plugin = addons
Modified: trunk/geany-plugins/addons/src/Makefile.am =================================================================== --- trunk/geany-plugins/addons/src/Makefile.am 2009-06-14 17:22:28 UTC (rev 734) +++ trunk/geany-plugins/addons/src/Makefile.am 2009-06-14 17:26:30 UTC (rev 735) @@ -1,4 +1,4 @@ -include $(top_srcdir)/build/vars.mk +include $(top_srcdir)/build/vars.build.mk
geanyplugins_LTLIBRARIES = \ addons.la
Copied: trunk/geany-plugins/build/vars.build.mk (from rev 734, trunk/geany-plugins/build/vars.mk) =================================================================== --- trunk/geany-plugins/build/vars.build.mk (rev 0) +++ trunk/geany-plugins/build/vars.build.mk 2009-06-14 17:26:30 UTC (rev 735) @@ -0,0 +1,12 @@ +AM_CFLAGS = \ + -DLOCALEDIR=""$(LOCALEDIR)"" \ + -DPREFIX=""$(prefix)"" \ + -DDOCDIR=""$(docdir)"" \ + -DDATADIR=""$(datadir)"" \ + -DLIBDIR=""$(libdir)"" \ + $(GEANY_CFLAGS) + +AM_LDFLAGS = -module -avoid-version + +COMMONLIBS = \ + $(GEANY_LIBS)
Added: trunk/geany-plugins/build/vars.docs.mk =================================================================== --- trunk/geany-plugins/build/vars.docs.mk (rev 0) +++ trunk/geany-plugins/build/vars.docs.mk 2009-06-14 17:26:30 UTC (rev 735) @@ -0,0 +1,11 @@ +plugindocdir = $(docdir)/$(PACKAGE)/$(plugin) +plugindoc_DATA = \ + README \ + ChangeLog \ + NEWS \ + COPYING \ + AUTHORS + +# TODO: make sure these files exist! +README AUTHORS: + touch $@
Deleted: trunk/geany-plugins/build/vars.mk =================================================================== --- trunk/geany-plugins/build/vars.mk 2009-06-14 17:22:28 UTC (rev 734) +++ trunk/geany-plugins/build/vars.mk 2009-06-14 17:26:30 UTC (rev 735) @@ -1,13 +0,0 @@ -AM_CFLAGS = \ - -DLOCALEDIR=""$(LOCALEDIR)"" \ - -DPREFIX=""$(prefix)"" \ - -DDOCDIR=""$(docdir)"" \ - -DDATADIR=""$(datadir)"" \ - -DLIBDIR=""$(libdir)"" \ - $(GEANY_CFLAGS) - -AM_LDFLAGS = -module -avoid-version - -COMMONLIBS = \ - $(GEANY_LIBS) -
Modified: trunk/geany-plugins/geanygdb/Makefile.am =================================================================== --- trunk/geany-plugins/geanygdb/Makefile.am 2009-06-14 17:22:28 UTC (rev 734) +++ trunk/geany-plugins/geanygdb/Makefile.am 2009-06-14 17:26:30 UTC (rev 735) @@ -1 +1,4 @@ -SUBDIRS = src tests +include $(top_srcdir)/build/vars.docs.mk + +SUBDIRS = src +plugin = geanygdb
Modified: trunk/geany-plugins/geanygdb/src/Makefile.am =================================================================== --- trunk/geany-plugins/geanygdb/src/Makefile.am 2009-06-14 17:22:28 UTC (rev 734) +++ trunk/geany-plugins/geanygdb/src/Makefile.am 2009-06-14 17:26:30 UTC (rev 735) @@ -1,4 +1,4 @@ -include $(top_srcdir)/build/vars.mk +include $(top_srcdir)/build/vars.build.mk
geanyplugins_LTLIBRARIES = geanygdb.la geanyplugins_PROGRAMS = ttyhelper
Modified: trunk/geany-plugins/geanylatex/Makefile.am =================================================================== --- trunk/geany-plugins/geanylatex/Makefile.am 2009-06-14 17:22:28 UTC (rev 734) +++ trunk/geany-plugins/geanylatex/Makefile.am 2009-06-14 17:26:30 UTC (rev 735) @@ -1 +1,4 @@ +include $(top_srcdir)/build/vars.docs.mk + SUBDIRS = src +plugin = geanylatex
Modified: trunk/geany-plugins/geanylatex/src/Makefile.am =================================================================== --- trunk/geany-plugins/geanylatex/src/Makefile.am 2009-06-14 17:22:28 UTC (rev 734) +++ trunk/geany-plugins/geanylatex/src/Makefile.am 2009-06-14 17:26:30 UTC (rev 735) @@ -1,4 +1,4 @@ -include $(top_srcdir)/build/vars.mk +include $(top_srcdir)/build/vars.build.mk
geanyplugins_LTLIBRARIES = geanylatex.la
Modified: trunk/geany-plugins/geanylipsum/Makefile.am =================================================================== --- trunk/geany-plugins/geanylipsum/Makefile.am 2009-06-14 17:22:28 UTC (rev 734) +++ trunk/geany-plugins/geanylipsum/Makefile.am 2009-06-14 17:26:30 UTC (rev 735) @@ -1 +1,4 @@ +include $(top_srcdir)/build/vars.docs.mk + SUBDIRS = src +plugin = geanylipsum
Modified: trunk/geany-plugins/geanylipsum/src/Makefile.am =================================================================== --- trunk/geany-plugins/geanylipsum/src/Makefile.am 2009-06-14 17:22:28 UTC (rev 734) +++ trunk/geany-plugins/geanylipsum/src/Makefile.am 2009-06-14 17:26:30 UTC (rev 735) @@ -1,4 +1,4 @@ -include $(top_srcdir)/build/vars.mk +include $(top_srcdir)/build/vars.build.mk
geanyplugins_LTLIBRARIES = geanylipsum.la geanylipsum_la_SOURCES = geanylipsum.c
Modified: trunk/geany-plugins/geanysendmail/Makefile.am =================================================================== --- trunk/geany-plugins/geanysendmail/Makefile.am 2009-06-14 17:22:28 UTC (rev 734) +++ trunk/geany-plugins/geanysendmail/Makefile.am 2009-06-14 17:26:30 UTC (rev 735) @@ -1 +1,4 @@ +include $(top_srcdir)/build/vars.docs.mk + SUBDIRS = src +plugin = geanysendmail
Modified: trunk/geany-plugins/geanysendmail/src/Makefile.am =================================================================== --- trunk/geany-plugins/geanysendmail/src/Makefile.am 2009-06-14 17:22:28 UTC (rev 734) +++ trunk/geany-plugins/geanysendmail/src/Makefile.am 2009-06-14 17:26:30 UTC (rev 735) @@ -1,4 +1,4 @@ -include $(top_srcdir)/build/vars.mk +include $(top_srcdir)/build/vars.build.mk
geanyplugins_LTLIBRARIES = geanysendmail.la geanysendmail_la_SOURCES = geanysendmail.c icon.h
Modified: trunk/geany-plugins/shiftcolumn/Makefile.am =================================================================== --- trunk/geany-plugins/shiftcolumn/Makefile.am 2009-06-14 17:22:28 UTC (rev 734) +++ trunk/geany-plugins/shiftcolumn/Makefile.am 2009-06-14 17:26:30 UTC (rev 735) @@ -1 +1,4 @@ +include $(top_srcdir)/build/vars.docs.mk + SUBDIRS = src +plugin = shiftcolumn
Modified: trunk/geany-plugins/shiftcolumn/src/Makefile.am =================================================================== --- trunk/geany-plugins/shiftcolumn/src/Makefile.am 2009-06-14 17:22:28 UTC (rev 734) +++ trunk/geany-plugins/shiftcolumn/src/Makefile.am 2009-06-14 17:26:30 UTC (rev 735) @@ -1,4 +1,4 @@ -include $(top_srcdir)/build/vars.mk +include $(top_srcdir)/build/vars.build.mk
geanyplugins_LTLIBRARIES = shiftcolumn.la shiftcolumn_la_SOURCES = shiftcolumn.c
Modified: trunk/geany-plugins/spellcheck/Makefile.am =================================================================== --- trunk/geany-plugins/spellcheck/Makefile.am 2009-06-14 17:22:28 UTC (rev 734) +++ trunk/geany-plugins/spellcheck/Makefile.am 2009-06-14 17:26:30 UTC (rev 735) @@ -1 +1,4 @@ +include $(top_srcdir)/build/vars.docs.mk + SUBDIRS = src +plugin = spellcheck
Modified: trunk/geany-plugins/spellcheck/src/Makefile.am =================================================================== --- trunk/geany-plugins/spellcheck/src/Makefile.am 2009-06-14 17:22:28 UTC (rev 734) +++ trunk/geany-plugins/spellcheck/src/Makefile.am 2009-06-14 17:26:30 UTC (rev 735) @@ -1,4 +1,4 @@ -include $(top_srcdir)/build/vars.mk +include $(top_srcdir)/build/vars.build.mk
geanyplugins_LTLIBRARIES = spellcheck.la spellcheck_la_SOURCES = \
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.