https://github.com/geodynamics/citcoms
Revision 0f33eded334e24c7e68c58202eaafb8a7b242bc4 authored by Leif Strand on 28 September 2005, 23:26:16 UTC, committed by Leif Strand on 28 September 2005, 23:26:16 UTC
that installing multiple packages to a single PREFIX "just works".
This also attempts to simulate the final installation environment,
which might make a difference in unusual cases.  Also, 'sed' the
install-time PYTHONPATH into CitComS scripts (instead of an explicit
list of @pythondir@'s).

Added _getPrivateDepositoryLocations() and CitcomS.pml.  Changed
"etc/citcoms" to "etc/CitcomS" for consistency with the Python package
name.  Add PACKAGE_VERSION to __init__.py, and added
pyconfig-generated config.py.  Freeze the full path to 'mpirun' and
'mpipython.exe' at 'configure' time.  First crack at batch system
configuration.

1 parent 76bf816
Raw File
Tip revision: 0f33eded334e24c7e68c58202eaafb8a7b242bc4 authored by Leif Strand on 28 September 2005, 23:26:16 UTC
Add ${pythondir} to PYTHONPATH before checking for Python modules, so
Tip revision: 0f33ede
Make.mm
# -*- Makefile -*-
#
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#
#<LicenseText>
#=====================================================================
#
#                             CitcomS.py
#                 ---------------------------------
#
#                              Authors:
#            Eh Tan, Eun-seo Choi, and Pururav Thoutireddy 
#          (c) California Institute of Technology 2002-2005
#
#        By downloading and/or installing this software you have
#       agreed to the CitcomS.py-LICENSE bundled with this software.
#             Free for non-commercial academic research ONLY.
#      This program is distributed WITHOUT ANY WARRANTY whatsoever.
#
#=====================================================================
#
#  Copyright June 2005, by the California Institute of Technology.
#  ALL RIGHTS RESERVED. United States Government Sponsorship Acknowledged.
# 
#  Any commercial use must be negotiated with the Office of Technology
#  Transfer at the California Institute of Technology. This software
#  may be subject to U.S. export control laws and regulations. By
#  accepting this software, the user agrees to comply with all
#  applicable U.S. export laws and regulations, including the
#  International Traffic and Arms Regulations, 22 C.F.R. 120-130 and
#  the Export Administration Regulations, 15 C.F.R. 730-744. User has
#  the responsibility to obtain export licenses, or other export
#  authority as may be required before exporting such information to
#  foreign countries or providing access to foreign nationals.  In no
#  event shall the California Institute of Technology be liable to any
#  party for direct, indirect, special, incidental or consequential
#  damages, including lost profits, arising out of the use of this
#  software and its documentation, even if the California Institute of
#  Technology has been advised of the possibility of such damage.
# 
#  The California Institute of Technology specifically disclaims any
#  warranties, including the implied warranties or merchantability and
#  fitness for a particular purpose. The software and documentation
#  provided hereunder is on an "as is" basis, and the California
#  Institute of Technology has no obligations to provide maintenance,
#  support, updates, enhancements or modifications.
#
#=====================================================================
#</LicenseText>
#
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#

include local.def

PROJECT = CitcomS
PACKAGE = CitcomS

RECURSE_DIRS = \
    lib \
    drivers \
    module \
    pyre \
    etc \
    tests \
    visual

#--------------------------------------------------------------------------
#

all:
	BLD_ACTION="all" $(MM) recurse

PROJ_CLEAN = 
clean::
	BLD_ACTION="clean" $(MM) recurse
	$(RM) $(RMFLAGS) $(BLD_TMPDIR)/$(PROJECT) $(BLD_LIBDIR)/$(PROJECT)

distclean::
	BLD_ACTION="distclean" $(MM) recurse

tidy::
	BLD_ACTION="tidy" $(MM) recurse

release: tidy
	cvs release .

test: all
	BLD_ACTION="test" RECURSE_DIRS="tests" $(MM) recurse

# version
# $Id: Make.mm,v 1.5 2005/07/23 01:35:51 leif Exp $

#
# End of file
back to top