~ubuntu-branches/ubuntu/maverick/tn5250/maverick

« back to all changes in this revision

Viewing changes to python/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Carey Evans
  • Date: 2009-12-17 22:23:00 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20091217222300-cyutcin1bc0m9wrd
Tags: 0.17.4-2
Fix many compiler warnings, especially implicit pointer conversions
(closes: #561165, #561166).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
## Process this file with automake to produce Makefile.in
 
2
 
 
3
INCLUDES = @PYTHON_CFLAGS@ \
 
4
        -DSYSCONFDIR=\"$(sysconfdir)\"
 
5
 
 
6
# Here's where we build the python module.
 
7
pysodir =               @PYTHON_PREFIX@/lib/python@PYTHON_VERSION@/lib-dynload
 
8
pyso_LTLIBRARIES =      libtn5250module.la
 
9
 
 
10
# For some icky reason, automake or libtool pukes on the below line.  So we
 
11
# just add all the SOURCES (sigh).
 
12
# libtn5250module_la_LIBADD =   lib5250.la
 
13
 
 
14
libtn5250module_la_LIBADD =     @with_exra_libs@
 
15
 
 
16
libtn5250module_la_SOURCES =    tn5250-python.c\
 
17
                        $(lib5250_la_SOURCES)
 
18
 
 
19
install-exec-local:
 
20
        ( cd $(pysodir) && ln -sf libtn5250module.so tn5250module.so )