Changeset 363 for trunk/src


Ignore:
Timestamp:
Mar 14, 2006, 8:44:14 PM (19 years ago)
Author:
cxsong
Message:

added grid3d_rect files and test program

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/mesh/Makefile

    r358 r363  
    4141                test_s2 \
    4242                test_rect2 \
     43                test_rect3 \
    4344                test_serializer
    4445
     
    9596RP_MESH_DEPS =  const.o util.o reader.o serializer.o \
    9697                grid1d.o grid2d.o field.o grid2d_rect.o \
    97                 grid3d.o \
     98                grid3d.o grid3d_rect.o \
    9899                node2d.o node3d.o mesh.o element.o
    99100
     
    128129grid2d_rect.cc: grid2d_rect.h grid2d.h grid1d.h util.h rp_types.h byte_order.h serializable.h
    129130grid3d.cc: grid3d.h grid1d.h util.h rp_types.h byte_order.h serializable.h
     131grid3d_rect.cc: grid3d_rect.h grid3d.h grid1d.h util.h rp_types.h byte_order.h serializable.h
    130132field.cc: grid1d.h util.h rp_types.h byte_order.h serializable.h
    131133serializer.cc: serializer.h serializable.h grid1d.h grid2d.h grid2d_rect.h util.h field.h
     
    136138grid3d.o: grid3d.cc
    137139        $(CXX) $(CFLAGS) $(DEBUG) -c $?
     140grid3d_rect.o: grid3d_rect.cc
     141        $(CXX) $(CFLAGS) $(DEBUG) -c $?
    138142grid2d.o: grid2d.cc
    139143        $(CXX) $(CFLAGS) $(DEBUG) -c $?
     
    182186        $(CXX) $(DEBUG) -o $@ $< $(LIB_RPMESH)
    183187test_rect2: test_rect2.o ../librpmesh.so
     188        $(CXX) $(DEBUG) -o $@ $< $(LIB_RPMESH)
     189test_rect3: test_rect3.o ../librpmesh.so
    184190        $(CXX) $(DEBUG) -o $@ $< $(LIB_RPMESH)
    185191test_grid3d: test_grid3d.o ../librpmesh.so
Note: See TracChangeset for help on using the changeset viewer.