Last change
on this file since 117 was
84,
checked in by dkearney, 19 years ago
|
- added "install" target to make file for copying files over to /opt/rappture
- added targets for python to build and install the units module
- added fortran stub functions for library and units.
RpLibraryF_test.f compiles, just with warnings, because i'm still working on it.
|
File size:
499 bytes
|
Line | |
---|
1 | from distutils.core import setup, Extension |
---|
2 | |
---|
3 | module = Extension('Rappture.Units', |
---|
4 | include_dirs = [ '../include/cee', |
---|
5 | '../include/core'], |
---|
6 | sources = [ 'core/RpUnitsStd.cc', |
---|
7 | 'core/RpUnits.cc', |
---|
8 | 'python/PyRpUnits.cc' ]) |
---|
9 | |
---|
10 | setup(name="Rappture.Units", |
---|
11 | version="0.1", |
---|
12 | description="module for converting Rappture Units", |
---|
13 | ext_modules=[module] |
---|
14 | ) |
---|
15 | |
---|
Note: See
TracBrowser
for help on using the repository browser.