Changeset 236


Ignore:
Timestamp:
Mar 1, 2006 9:53:58 AM (18 years ago)
Author:
cxsong
Message:

added new test files

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/mesh/Makefile

    r232 r236  
    3838CC              = gcc
    3939CXX             = g++
    40 DEBUG           = -g -Wall
    41 DEBUG_PLUS      = -g -DDEBUG
     40DEBUG           = -g -Wall $(DEBUG_PLUS)
     41DEBUG_PLUS      = -DDEBUG
    4242PY              = $(RP_INSTALL_BASE)/bin/python
    4343MEX             = mex
     
    189189        $(CXX) $(CFLAGS) $(DEBUG) -c $?
    190190element.o: element.cc
     191        $(CXX) $(CFLAGS) $(DEBUG) -c $?
     192mesh.o: mesh.cc
    191193        $(CXX) $(CFLAGS) $(DEBUG) -c $?
    192194
     
    359361
    360362endiantest: endiantest.o
    361         $(CXX) -o $@ $<
     363        $(CXX) $(DEBUG) -o $@ $<
    362364test_node3d: test_node3d.o
    363         $(CXX) -o $@ $< $(LIB_RPMESH)
     365        $(CXX) $(DEBUG) -o $@ $< $(LIB_RPMESH)
    364366test_node2d: test_node2d.o
    365         $(CXX) -o $@ $< $(LIB_RPMESH)
     367        $(CXX) $(DEBUG) -o $@ $< $(LIB_RPMESH)
    366368test_element: test_element.o ../librpmesh.so
    367         $(CXX) -o $@ $< $(LIB_RPMESH)
     369        $(CXX) $(DEBUG) -o $@ $< $(LIB_RPMESH)
    368370test_elem2: test_elem2.o ../librpmesh.so
    369         $(CXX) -o $@ $< $(LIB_RPMESH)
     371        $(CXX) $(DEBUG) -o $@ $< $(LIB_RPMESH)
     372test_mesh: test_mesh.o ../librpmesh.so
     373        $(CXX) $(DEBUG) -o $@ $< $(LIB_RPMESH)
    370374etest: etest.o ../librpmesh.so
    371         $(CXX) -o $@ $< $(LIB_RPMESH)
     375        $(CXX) $(DEBUG) -o $@ $< $(LIB_RPMESH)
     376try: try.o ../librpmesh.so
     377        $(CXX) $(DEBUG) -o $@ $< $(LIB_RPMESH)
Note: See TracChangeset for help on using the changeset viewer.