1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
##
## Regina - A Normal Surface Theory Calculator
## Makefile Template
##
## Process this file with automake in the top-level directory
## to produce Makefile.in.
##
KDE_OPTIONS=noautodist
INCLUDES = @ENGINE_INCLUDES@ @BOOST_PYTHON_INCLUDES@
CXXFLAGS = @CXXFLAGS_NODEBUG@
SUBDIRS = srcutils \
algebra \
angle \
census \
file \
foreign \
manifold \
maths \
packet \
progress \
snappea \
split \
subcomplex \
surfaces \
triangulation \
utilities \
. \
testsuite
pkgpythonlibdir = $(pkglibdir)/python
pkgpythonlib_LTLIBRARIES = regina.la
regina_la_SOURCES = globalarray.cpp modulemain.cpp
regina_la_LDFLAGS = -module -avoid-version @BOOST_PYTHON_LDFLAGS@ \
@ADD_STDCALL_ALIAS@
regina_la_LIBADD = @LIB_ENGINE@ @BOOST_PYTHON_LIBS@ \
algebra/libalgebra.la \
angle/libangle.la \
census/libcensus.la \
file/libfile.la \
foreign/libforeign.la \
manifold/libmanifold.la \
maths/libmaths.la \
packet/libpacket.la \
progress/libprogress.la \
snappea/libsnappea.la \
split/libsplit.la \
subcomplex/libsubcomplex.la \
surfaces/libsurfaces.la \
triangulation/libtriangulation.la \
utilities/libutilities.la
noinst_HEADERS = globalarray.h
EXTRA_DIST = README.txt TODO.txt regina-python.in
install-exec-local :
$(mkinstalldirs) $(DESTDIR)$(bindir)
$(INSTALL_SCRIPT) regina-python $(DESTDIR)$(bindir)
uninstall-local :
rm -f $(DESTDIR)$(bindir)/regina-python
|