Changeset 520 for trunk/src/octave


Ignore:
Timestamp:
Aug 30, 2006, 7:01:05 AM (18 years ago)
Author:
dkearney
Message:

added units conversion from deg->rad to tcl bindings,
adjusted matlab and octave makefiles to include more specific compile dependancies
adjusted rappture.h so people can just include 1 header file to get all functionalaity
added new units_on/units_off flags to rappture's core units.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/octave/Makefile.in

    r508 r520  
    3838OCT_INCLS = $(INCL_OCTAVE) $(INCL_CORE) $(INCL_RP_DEPS)
    3939OCTAVE_COMP_ARGS = $(OCT_INCLS) $(LIB_RAPPTURE) $(LIB_SCEW_FLAG)
    40 RpOctave:
     40RpOctave:       rpAddPresets.oct \
     41                        rpLib.oct \
     42                        rpLibChildrenByType.oct \
     43                        rpLibChildren.oct \
     44                        rpLibElementAsComp.oct \
     45                        rpLibElementAsId.oct \
     46                        rpLibElementAsObject.oct \
     47                        rpLibElementAsType.oct \
     48                        rpLibElement.oct \
     49                        rpLibGet.oct \
     50                        rpLibGetString.oct \
     51                        rpLibGetDouble.oct \
     52                        rpLibNodeComp.oct \
     53                        rpLibNodeId.oct \
     54                        rpLibNodeType.oct \
     55                        rpLibPut.oct \
     56                        rpLibPutDouble.oct \
     57                        rpLibPutSingle.oct \
     58                        rpLibResult.oct \
     59                        rpLibXml.oct \
     60                        rpUnitsConvert.oct \
     61                        rpUnitsConvertDbl.oct \
     62                        rpUnitsConvertStr.oct \
     63                        rpUnitsConvertObjDbl.oct \
     64                        rpUnitsConvertObjStr.oct \
     65                        rpUnitsDefineUnit.oct \
     66                        rpUnitsFind.oct \
     67                        rpUnitsGetBasis.oct \
     68                        rpUnitsGetExponent.oct \
     69                        rpUnitsGetUnits.oct \
     70                        rpUnitsGetUnitsName.oct \
     71                        rpUnitsGetMakeMetric.oct
     72
     73rpAddPresets.oct:
    4174        $(OCT) rpAddPresets.cc            $(OCTAVE_COMP_ARGS)
     75rpLib.oct:
    4276        $(OCT) rpLib.cc                   $(OCTAVE_COMP_ARGS)
     77rpLibChildrenByType.oct:
    4378        $(OCT) rpLibChildrenByType.cc     $(OCTAVE_COMP_ARGS)
     79rpLibChildren.oct:
    4480        $(OCT) rpLibChildren.cc           $(OCTAVE_COMP_ARGS)
     81rpLibElementAsComp.oct:
    4582        $(OCT) rpLibElementAsComp.cc      $(OCTAVE_COMP_ARGS)
     83rpLibElementAsId.oct:
    4684        $(OCT) rpLibElementAsId.cc        $(OCTAVE_COMP_ARGS)
     85rpLibElementAsObject.oct:
    4786        $(OCT) rpLibElementAsObject.cc    $(OCTAVE_COMP_ARGS)
     87rpLibElementAsType.oct:
    4888        $(OCT) rpLibElementAsType.cc      $(OCTAVE_COMP_ARGS)
     89rpLibElement.oct:
    4990        $(OCT) rpLibElement.cc            $(OCTAVE_COMP_ARGS)
     91rpLibGet.oct:
    5092        $(OCT) rpLibGet.cc                $(OCTAVE_COMP_ARGS)
     93rpLibGetString.oct:
    5194        $(OCT) rpLibGetString.cc          $(OCTAVE_COMP_ARGS)
     95rpLibGetDouble.oct:
    5296        $(OCT) rpLibGetDouble.cc          $(OCTAVE_COMP_ARGS)
     97rpLibNodeComp.oct:
    5398        $(OCT) rpLibNodeComp.cc           $(OCTAVE_COMP_ARGS)
     99rpLibNodeId.oct:
    54100        $(OCT) rpLibNodeId.cc             $(OCTAVE_COMP_ARGS)
     101rpLibNodeType.oct:
    55102        $(OCT) rpLibNodeType.cc           $(OCTAVE_COMP_ARGS)
     103rpLibPut.oct:
    56104        $(OCT) rpLibPut.cc                $(OCTAVE_COMP_ARGS)
     105rpLibPutDouble.oct:
    57106        $(OCT) rpLibPutDouble.cc          $(OCTAVE_COMP_ARGS)
     107rpLibPutSingle.oct:
    58108        $(OCT) rpLibPutString.cc          $(OCTAVE_COMP_ARGS)
     109rpLibResult.oct:
    59110        $(OCT) rpLibResult.cc             $(OCTAVE_COMP_ARGS)
     111rpLibXml.oct:
    60112        $(OCT) rpLibXml.cc                $(OCTAVE_COMP_ARGS)
     113rpUnitsConvert.oct:
    61114        $(OCT) rpUnitsConvert.cc          $(OCTAVE_COMP_ARGS)
     115rpUnitsConvertDbl.oct:
    62116        $(OCT) rpUnitsConvertDbl.cc       $(OCTAVE_COMP_ARGS)
     117rpUnitsConvertStr.oct:
    63118        $(OCT) rpUnitsConvertStr.cc       $(OCTAVE_COMP_ARGS)
     119rpUnitsConvertObjDbl.oct:
    64120        $(OCT) rpUnitsConvertObjDbl.cc    $(OCTAVE_COMP_ARGS)
     121rpUnitsConvertObjStr.oct:
    65122        $(OCT) rpUnitsConvertObjStr.cc    $(OCTAVE_COMP_ARGS)
     123rpUnitsDefineUnit.oct:
    66124        $(OCT) rpUnitsDefineUnit.cc       $(OCTAVE_COMP_ARGS)
     125rpUnitsFind.oct:
    67126        $(OCT) rpUnitsFind.cc             $(OCTAVE_COMP_ARGS)
     127rpUnitsGetBasis.oct:
    68128        $(OCT) rpUnitsGetBasis.cc         $(OCTAVE_COMP_ARGS)
     129rpUnitsGetExponent.oct:
    69130        $(OCT) rpUnitsGetExponent.cc      $(OCTAVE_COMP_ARGS)
     131rpUnitsGetUnits.oct:
    70132        $(OCT) rpUnitsGetUnits.cc         $(OCTAVE_COMP_ARGS)
     133rpUnitsGetUnitsName.oct:
    71134        $(OCT) rpUnitsGetUnitsName.cc     $(OCTAVE_COMP_ARGS)
     135rpUnitsGetMakeMetric.oct:
    72136        $(OCT) rpUnitsMakeMetric.cc       $(OCTAVE_COMP_ARGS)
    73137
Note: See TracChangeset for help on using the changeset viewer.