From 5ce17adcb1ff31ffdc2618fcf4788beecc1e1ff8 Mon Sep 17 00:00:00 2001 From: Sebastien Estienne Date: Sat, 19 Nov 2005 00:33:52 +0000 Subject: * added a the begining of a proper plugin architecture git-svn-id: file:///home/lennart/svn/public/service-discovery-applet/trunk@80 3be567f1-68ff-0310-b24a-ad7cc433fd2f --- src/modules/Makefile.am | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/modules/Makefile.am (limited to 'src/modules/Makefile.am') diff --git a/src/modules/Makefile.am b/src/modules/Makefile.am new file mode 100644 index 0000000..d0c50d6 --- /dev/null +++ b/src/modules/Makefile.am @@ -0,0 +1,24 @@ +sdadir = $(pythondir)/sdapplet + +pythonscripts = \ + pluginloader.py + +EXTRA_DIST = \ + __init__.py \ + pluginloader.py.in \ + pluginutils.py + +sda_PYTHON = $(pythonscripts) pluginutils.py __init__.py + +pluginloader.py: pluginloader.py.in + sed \ + -e 's,@PYTHON\@,$(PYTHON),g' \ + -e 's,@version\@,$(VERSION),g' \ + -e 's,@iconsdir\@,$(ICONSDIR),g' \ + -e 's,@actionsdir\@,$(ACTIONSDIR),g' \ + -e 's,@GETTEXT_PACKAGE\@,$(GETTEXT_PACKAGE),g' \ + -e 's,@LOCALEDIR\@,$(LOCALEDIR),g' \ + $< > $@ + chmod +x $@ + +CLEANFILES = $(pythonscripts) *.pyc *.pyo -- cgit