~ubuntu-branches/ubuntu/natty/stfl/natty

« back to all changes in this revision

Viewing changes to python/Makefile.snippet

  • Committer: Bazaar Package Importer
  • Author(s): Nico Golde
  • Date: 2007-08-07 13:06:54 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20070807130654-fmvsraotulj0nbri
Tags: 0.15-3
Again added fPIC to CFLAGS. Hopefully all build issues
are fixed now.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#
2
2
#  STFL - The Structured Terminal Forms Language/Library
3
 
#  Copyright (C) 2006  Clifford Wolf <clifford@clifford.at>
4
 
#
5
 
#  This program is free software; you can redistribute it and/or modify
6
 
#  it under the terms of the GNU General Public License as published by
7
 
#  the Free Software Foundation; either version 2 of the License, or
8
 
#  (at your option) any later version.
9
 
#
10
 
#  This program is distributed in the hope that it will be useful,
 
3
#  Copyright (C) 2006, 2007  Clifford Wolf <clifford@clifford.at>
 
4
#
 
5
#  This library is free software; you can redistribute it and/or
 
6
#  modify it under the terms of the GNU Lesser General Public
 
7
#  License as published by the Free Software Foundation; either
 
8
#  version 3 of the License, or (at your option) any later version.
 
9
#  
 
10
#  This library is distributed in the hope that it will be useful,
11
11
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 
#  GNU General Public License for more details.
14
 
#
15
 
#  You should have received a copy of the GNU General Public License
16
 
#  along with this program; if not, write to the Free Software
17
 
#  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
12
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
13
#  Lesser General Public License for more details.
 
14
#  
 
15
#  You should have received a copy of the GNU Lesser General Public
 
16
#  License along with this library; if not, write to the Free Software
 
17
#  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
 
18
#  MA 02110-1301 USA
18
19
#
19
20
 
20
21
 
27
28
python/_stfl.so python/stfl.py python/stfl.pyc: libstfl.a stfl.h python/stfl.i swig/*.i
28
29
        cd python && swig -python stfl.i
29
30
        gcc -shared -fPIC python/stfl_wrap.c -I/usr/include/python$(PYTHON_VERSION) \
30
 
                -I. -L. -lstfl -lncurses -o python/_stfl.so
 
31
                -I. libstfl.a -lncursesw -o python/_stfl.so
31
32
        cd python && python -c 'import stfl'
32
33
 
33
34
install_python: python/_stfl.so python/stfl.py python/stfl.pyc
34
 
        cp python/_stfl.so /usr/lib/python2.4/lib-dynload/
35
 
        cp python/stfl.pyc /usr/lib/python2.4/
36
 
        cp python/stfl.py /usr/lib/python2.4/
 
35
        mkdir -p $(DESTDIR)$(prefix)/lib/python$(PYTHON_VERSION)/lib-dynload/
 
36
        cp python/_stfl.so $(DESTDIR)$(prefix)/lib/python$(PYTHON_VERSION)/lib-dynload/
 
37
        cp python/stfl.pyc $(DESTDIR)$(prefix)/lib/python$(PYTHON_VERSION)/
 
38
        cp python/stfl.py $(DESTDIR)$(prefix)/lib/python$(PYTHON_VERSION)/
37
39