Ignore:
Timestamp:
Jun 18, 2008, 6:51:34 AM (16 years ago)
Author:
dkearney
Message:

templatized the rappture simple buffer object to work with ints, floats, chars, doubles.
adjusted rappture buffer and encode to reflect the changes to the simple buffer.
created a basic dx writer object, currently it handles some uniform rectangular grids with data.
added some c header files to rappture outcome object to stop it from complaining about function headers.
adjusted Makefile to reflect changes to the simple buffer and dx writer object.

File:
1 edited

Legend:

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

    r1041 r1051  
    4949                RpBufferCInterface.h \
    5050                RpDict.h \
     51                RpDXWriter.h \
    5152                RpEncode.h \
    5253                RpEntityRef.h \
     
    114115                RpBuffer.o \
    115116                RpBufferCInterface.o \
     117                RpDXWriter.o \
    116118                RpEncode.o \
    117119                RpEntityRef.o \
     
    124126                RpPtr.o \
    125127                RpResult.o \
    126                 RpSimpleBuffer.o \
    127128                RpUnits.o \
    128129                RpUnitsCInterface.o \
     
    133134                RpUtilsFInterface.o  \
    134135                $(SCEW_OBJS) \
    135                 $(B64_OBJS) 
     136                $(B64_OBJS)
    136137
    137138name            = rappture
     
    144145$(lib): $(OBJS)
    145146        $(RM) $@
    146         $(AR) -r $@ $(OBJS) 
     147        $(AR) -r $@ $(OBJS)
    147148        $(RANLIB) $@
    148149
    149150$(shared_lib): $(OBJS)
    150151        $(SHLIB_LD) $(SHLIB_LDFLAGS) -o $@ $(OBJS) \
    151                 $(LIB_SEARCH_DIRS) $(LIBS) 
     152                $(LIB_SEARCH_DIRS) $(LIBS)
    152153
    153154install: install_libs install_headers
     
    155156install_libs: $(lib)  $(shared_lib)
    156157        $(INSTALL) -m 444 $(lib) $(libdir)
    157         $(INSTALL) -m 555 $(shared_lib) $(libdir) 
     158        $(INSTALL) -m 555 $(shared_lib) $(libdir)
    158159
    159 install_headers: 
     160install_headers:
    160161        $(INSTALL) -d $(incdir)
    161162        for i in $(HEADERS) ; do \
     
    163164        done
    164165
    165 .cc.o: 
    166         $(CXX) $(CXX_SWITCHES) -c $? 
     166.cc.o:
     167        $(CXX) $(CXX_SWITCHES) -c $?
    167168.c.o:
    168         $(CC) $(CC_SWITCHES)-c $? 
     169        $(CC) $(CC_SWITCHES)-c $?
    169170
    170 clean: 
     171clean:
    171172        $(RM) $(OBJS) $(lib) $(shared_lib)
    172173
Note: See TracChangeset for help on using the changeset viewer.