changeset f83c8000051b in /home/hg/repos/gajim

details:http://hg.gajim.org/gajim?cmd=changeset;node=f83c8000051b
description: Update Makefiles - hope this is complete.

diffstat:

 src/Makefile                               |   2 ++
 src/command_system/Makefile                |  21 +++++++++++++++++++++
 src/command_system/implementation/Makefile |  19 +++++++++++++++++++
 src/common/xmpp/Makefile                   |   1 +
 4 files changed, 43 insertions(+), 0 deletions(-)

diffs (78 lines):

diff -r 3355b9ab2490 -r f83c8000051b src/Makefile
--- a/src/Makefile      Mon Nov 02 22:51:16 2009 +0100
+++ b/src/Makefile      Mon Nov 02 23:02:06 2009 +0100
@@ -3,6 +3,7 @@
 SUBDIRS = common ${TRAYMODULE} osx
 
 SRCS = adhoc_commands.py               \
+       advanced_configuration_window.py        \
        atom_window.py                  \
        cell_renderer_image.py          \
        chat_control.py                 \
@@ -21,6 +22,7 @@
        groups.py                       \
        gtkexcepthook.py                        \
        gtkgui_helpers.py               \
+       gui_menu_builder.py             \
        history_manager.py              \
        history_window.py               \
        htmltextview.py                 \
diff -r 3355b9ab2490 -r f83c8000051b src/command_system/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/src/command_system/Makefile       Mon Nov 02 23:02:06 2009 +0100
@@ -0,0 +1,21 @@
+SUBDIRS = implementation
+
+SRCS = dispatching.py  \
+       errors.py       \
+       framework.py    \
+       __init__.py     \
+       mapping.py
+
+include ../../buildsys.mk
+
+all: ${OBJS}
+
+install-extra:
+       for i in ${OBJS}; do \
+               ${INSTALL_STATUS}; \
+               if ${MKDIR_P} ${DESTDIR}${libdir}/${PACKAGE}/command_system && 
${INSTALL} -m 644 $$i ${DESTDIR}${libdir}/${PACKAGE}/command_system/$$i; then \
+                       ${INSTALL_OK}; \
+               else \
+                       ${INSTALL_FAILED}; \
+               fi \
+       done
diff -r 3355b9ab2490 -r f83c8000051b src/command_system/implementation/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/src/command_system/implementation/Makefile        Mon Nov 02 23:02:06 
2009 +0100
@@ -0,0 +1,19 @@
+SRCS = custom.py       \
+       hosts.py                \
+       __init__.py     \
+       middleware.py   \
+       standard.py
+
+include ../../../buildsys.mk
+
+all: ${OBJS}
+
+install-extra:
+       for i in ${OBJS}; do \
+               ${INSTALL_STATUS}; \
+               if ${MKDIR_P} 
${DESTDIR}${libdir}/${PACKAGE}/command_system/implementation && ${INSTALL} -m 
644 $$i ${DESTDIR}${libdir}/${PACKAGE}/command_system/implementation/$$i; then \
+                       ${INSTALL_OK}; \
+               else \
+                       ${INSTALL_FAILED}; \
+               fi \
+       done
diff -r 3355b9ab2490 -r f83c8000051b src/common/xmpp/Makefile
--- a/src/common/xmpp/Makefile  Mon Nov 02 22:51:16 2009 +0100
+++ b/src/common/xmpp/Makefile  Mon Nov 02 23:02:06 2009 +0100
@@ -11,6 +11,7 @@
        proxy_connectors.py     \
        roster_nb.py            \
        simplexml.py            \
+       stringprepare.py                \
        tls_nb.py               \
        transports_nb.py
 
_______________________________________________
Commits mailing list
[email protected]
http://lists.gajim.org/cgi-bin/listinfo/commits

Reply via email to