Ignore:
Timestamp:
Sep 28, 2005, 12:09:43 AM (19 years ago)
Author:
dkearney
Message:
  1. changes to RpUnits, modified RpUnits::define() function not to look for base units.
  2. changed python RpUnits to return string when units!="off" and a number when units=="off"
  3. modified make files, hopefully making them easier to read, removing vpaths,

cleaning up the make process, combining smaller libraries into one library,
librappture, and putting the core objects into one library - libRpObjects,
for testing.

  1. copied rpResult function into rappture_interface.c to stop compiler from

complaining about undefined references ot the function. trying to use the
function probably won't work. but that can be fixed after the repository is
reorganized.

  1. in example/app-fermi/python/fermi.py, changed exit() to sys.exit() to

stop python from complaining about no function called exit().

  1. examples/app-fermi/fortran still does not run, but new rappture parser

should take care of these problems. (same with examples/fermi_fortran)

Location:
trunk/examples/app-fermi
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/examples/app-fermi/fortran/Makefile

    r66 r73  
    77PROGS = fermi
    88
    9 CFLAGS = -DCOMPNAME_ADD1UNDERSCORE
     9CFLAGS = -DCOMPNAME_ADD2UNDERSCORE
    1010
    1111#F77 = ifort
     
    1414
    1515LIB_DIR = $(RAPPTURE_DIR)/lib
    16 LIB_RAPPTUREIO  = -Wl,-rpath,$(LIB_DIR) -L$(LIB_DIR) -lRapptureIO
     16LIB_RAPPTURE    = -Wl,-rpath,$(LIB_DIR) -L$(LIB_DIR) -lrappture
    1717
    1818all: $(PROGS)
    1919
    2020fermi: fermi.f
    21         $(F77) -g -Wall $(LIB_RAPPTUREIO) -o $@ $<
     21        $(F77) -g -Wall $(LIB_RAPPTURE) -o $@ $<
    2222
    2323clean:
  • trunk/examples/app-fermi/python/fermi.py

    r71 r73  
    3636
    3737Rappture.result(driver)
    38 exit(0)
     38sys.exit()
Note: See TracChangeset for help on using the changeset viewer.