diff options
author | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2011-03-13 14:23:10 +0000 |
---|---|---|
committer | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2011-03-13 14:23:10 +0000 |
commit | 5785cbf6b31e2355a42a1fc6551b67fc3f7c95c7 (patch) | |
tree | 591f51e80dee43a09369811150cf7432bbbbb5a0 /Makefile.am | |
parent | 6bff64ff08b109e2511d65fada45a65882ce7e08 (diff) | |
parent | 15be37a1d3258256128ba887d811981cd7daae72 (diff) | |
download | pykolab-5785cbf6b31e2355a42a1fc6551b67fc3f7c95c7.tar.gz |
Merge branch 'master' of ssh://git.kolabsys.com/git/pykolab
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 98 |
1 files changed, 98 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 57f07a8..e9a3e9b 100644 --- a/Makefile.am +++ b/Makefile.am @@ -42,6 +42,104 @@ ChangeLog: srpm: ChangeLog dist @rpmbuild -ts $(PACKAGE)-$(VERSION).tar.gz +binary: + /home/jmeeuwen/devel/src/python.svn/Tools/freeze/freeze.py \ + -x BaseHTTPServer \ + -x ConfigParser \ + -x FixTk \ + -x SocketServer \ + -x StringIO \ + -x Tkconstants \ + -x Tkinter \ + -x UserDict \ + -x __future__ \ + -x _abcoll \ + -x _threading_local \ + -x _weakrefset \ + -x _xmlplus \ + -x abc \ + -x atexit \ + -x base64 \ + -x bdb \ + -x bisect \ + -x calendar \ + -x cmd \ + -x collections \ + -x copy \ + -x copy_reg \ + -x difflib \ + -x dis \ + -x distutils \ + -x doctest \ + -x dsml \ + -x dummy_thread \ + -x encodings \ + -x fnmatch \ + -x formatter \ + -x ftplib \ + -x functools \ + -x genericpath \ + -x getopt \ + -x getpass \ + -x gettext \ + -x glob \ + -x gzip \ + -x hashlib \ + -x hmac \ + -x httplib \ + -x imaplib \ + -x inspect \ + -x io \ + -x ldapurl \ + -x ldif \ + -x linecache \ + -x locale \ + -x logging \ + -x mimetools \ + -x mimetypes \ + -x ntpath \ + -x nturl2path \ + -x optparse \ + -x os2emxpath \ + -x pdb \ + -x pickle \ + -x pkgutil \ + -x posixpath \ + -x pprint \ + -x py_compile \ + -x pydoc \ + -x pydoc_data \ + -x quopri \ + -x random \ + -x repr \ + -x rfc822 \ + -x shlex \ + -x shutil \ + -x site \ + -x smtplib \ + -x socket \ + -x ssl \ + -x stat \ + -x string \ + -x struct \ + -x subprocess \ + -x sysconfig \ + -x tarfile \ + -x tempfile \ + -x textwrap \ + -x threading \ + -x traceback \ + -x types \ + -x urlparse \ + -x uu \ + -x warnings \ + -o src/kolabd/ \ + kolabd.py + cd src/kolabd/; $(MAKE) + +clean: + rm -rf src/*; mkdir -p src/ + execdir = $(sbindir) install-exec-local: |