Changeset 21


Ignore:
Timestamp:
Jul 11, 2005, 5:45:59 PM (19 years ago)
Author:
dkearney
Message:

created Makefile for compiling rappture libraries.
created README which starts to outline how to compile a rappture library
adjusted #include lines in most .h,.c,.cc files and added Include path

searched to the makefile.

files changed listed below:
M include/core/RpUnits.h
M include/core/RpDict.h
M include/cee/rappture_interface.h
A src/python/PyRpUnits_setup.py
M src/core/RpUnits.cc
M src/fortran/RpUnits_fortran.c
M src/fortran/rappture_fortran.c
M src/cee/rappture_interface.c
M src/cee/RpUnitsCInterface.cc
A src/README
A src/Makefile

Location:
trunk
Files:
3 added
8 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/cee/rappture_interface.h

    r19 r21  
    1 // #include <stdio.h>
    2 // #include <assert.h>
    3 // #include <python2.3/Python.h> // "/usr/include/python2.3/Python.h" // 
    4 #include "python2.4/Python.h" // "/usr/include/python2.3/Python.h" // 
     1#include "python2.4/Python.h"
    52
    63/*
  • trunk/include/core/RpDict.h

    r19 r21  
    312312/*--------------------------------------------------------------------------*/
    313313
    314 #include "../src/RpDict.cc"
     314#include "../../src/core/RpDict.cc"
    315315
    316316#endif
  • trunk/include/core/RpUnits.h

    r19 r21  
    55#include <errno.h>
    66
    7 // #include "../include/RpDebug.h"
    8 #include "../include/RpDict.h"
    9 #include "../include/RpUnitsStd.h"
    10 // #include "../include/expr_eval_simple.h"
     7#include "RpDict.h"
     8#include "RpUnitsStd.h"
    119
    1210#ifndef _RpUNITS_H
  • trunk/src/cee/RpUnitsCInterface.cc

    r20 r21  
    1 #include "../include/RpUnits.h"
    2 #include "../include/RpUnitsCInterface.h"
     1#include "RpUnits.h"
     2#include "RpUnitsCInterface.h"
    33
    44#ifdef __cplusplus
  • trunk/src/cee/rappture_interface.c

    r20 r21  
    1 #include "../include/rappture_interface.h"
     1#include "rappture_interface.h"
    22
    33/**********************************************************************/
  • trunk/src/core/RpUnits.cc

    r20 r21  
    11 #ifndef _RpUNITS_H
    2      #include "../include/RpUnits.h"
     2     #include "RpUnits.h"
    33 #endif
    44
  • trunk/src/fortran/RpUnits_fortran.c

    r20 r21  
    33// #include <stdio.h>
    44
    5 #include "../include/RpUnits.h"
    6 #include "../include/RpDict.h"
     5#include "RpUnits.h"
     6#include "RpDict.h"
    77#include "string.h"
    88
  • trunk/src/fortran/rappture_fortran.c

    r20 r21  
    1 #include "../include/rappture_interface.h"
    2 #include "../include/RpDict.h"
     1#include "rappture_interface.h"
     2#include "RpDict.h"
    33#include <string.h>
    44
Note: See TracChangeset for help on using the changeset viewer.