From 59029d7c0539c4d1b5ebb4662fe7b0d3010798cc Mon Sep 17 00:00:00 2001
From: Yann Leboulanger <asterix@lagaule.org>
Date: Mon, 30 May 2005 19:17:28 +0000
Subject: [PATCH] we now install py files instead of pyo files

---
 Makefile | 17 +++++++----------
 1 file changed, 7 insertions(+), 10 deletions(-)

diff --git a/Makefile b/Makefile
index 97dd8c4a5a..6ad2528782 100644
--- a/Makefile
+++ b/Makefile
@@ -4,33 +4,29 @@ MODULES		= src src/common po
 PREFIX		= /usr
 DESTDIR		= /
 
-FIND		= find -regex '.*\.\(\(glade\)\|\(pyo\)\|\(xpm\)\|\(gif\)\|\(png\)\|\(mo\)\|\(wav\)\)'
+FIND		= find -regex '.*\.\(\(glade\)\|\(py\)\|\(xpm\)\|\(gif\)\|\(png\)\|\(mo\)\|\(wav\)\)'
 FILES		= `$(FIND)`
 DIRS		= `$(FIND) -exec dirname {} \; | sort -u`
 FIND_LIB	= find -regex '.*\.\(so\)'
 FILES_LIB	= `$(FIND_LIB)`
-FIND_PY		= find -regex '.*\.\(py\)'
-FILES_PY	= `$(FIND_PY)`
 
 SCRIPTS = \
 	scripts/gajim
 
-all: translation trayicon idle pyo
+all: translation trayicon gtkspell idle
 
 translation:
 	make -C po all
 
 trayicon:
-	make -C src all;
+	make -C src trayicon.so;
+
+gtkspell:
+	make -C src gtkspell.so;
 
 idle:
 	make -C src/common all;
 
-pyo:
-	for f in $(FILES_PY) ; do \
-		python -OO -c "import py_compile; py_compile.compile('$$f')"; \
-	done
-
 clean:
 	find -name *.pyc -exec rm {} \;
 	find -name *.pyo -exec rm {} \;
@@ -61,6 +57,7 @@ install:
 		DST=`dirname "$$f"`; \
 		cp "$$f" "$(DESTDIR)$(PREFIX)/share/gajim/$$DST/"; \
 	done
+	rm "$(DESTDIR)$(PREFIX)/share/gajim/setup_win32.py";
 	cp COPYING "$(DESTDIR)$(PREFIX)/share/gajim/";
 	mkdir -p "$(DESTDIR)$(PREFIX)/share/applications";
 	cp gajim.desktop "$(DESTDIR)$(PREFIX)/share/applications/";
-- 
GitLab