~ubuntu-branches/ubuntu/breezy/pysvn/breezy

« back to all changes in this revision

Viewing changes to Source/pysvn_common.mak

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2005-09-08 05:13:33 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050908051333-qgsa2rksrb4az1h4
Tags: 1.3.0-1
Package from release tarball.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
 
7
7
CXX_OBJECTS=cxxsupport.o cxx_extensions.o cxxextensions.o IndirectPythonInterface.o
8
8
PYSVN_OBJECTS=pysvn.o pysvn_callbacks.o pysvn_client.o pysvn_entry.o pysvn_enum_string.o \
9
 
        pysvn_revision.o pysvn_status.o pysvn_docs.o pysvn_path.o \
10
 
        pysvn_arg_processing.o pysvn_converters.o pysvn_svnenv.o \
11
 
        pysvn_profile.o
 
9
        pysvn_transaction.o pysvn_revision.o pysvn_status.o pysvn_docs.o pysvn_path.o \
 
10
        pysvn_arg_processing.o pysvn_converters.o pysvn_svnenv.o pysvn_profile.o
12
11
 
13
12
all: pysvn/_pysvn.so 
14
13
 
27
26
pysvn_client.o: pysvn_client.cpp
28
27
        $(CCC) $(CCCFLAGS) -o $@ $<
29
28
 
 
29
pysvn_transaction.o: pysvn_transaction.cpp
 
30
        $(CCC) $(CCCFLAGS) -o $@ $<
 
31
 
30
32
pysvn_entry.o: pysvn_entry.cpp
31
33
        $(CCC) $(CCCFLAGS) -o $@ $<
32
34
 
75
77
        rm -f pysvn/_pysvn.so
76
78
 
77
79
test: pysvn/_pysvn.so
78
 
        LD_LIBRARY_PATH=$(PYTHON) -c "import pysvn;print pysvn.Client()"
 
80
        PYTHONPATH=. $(PYTHON) -c "import pysvn;print pysvn.version,pysvn.Client()"