Skip to content

Commit

Permalink
TEST: Make it easier to use valgrind with test
Browse files Browse the repository at this point in the history
  • Loading branch information
gdsjaar committed Mar 13, 2024
1 parent bc45e92 commit 1516aa8
Showing 1 changed file with 16 additions and 15 deletions.
31 changes: 16 additions & 15 deletions SEACAS-Test/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,23 @@ NPROCC = 33
BASE ?= ".."
BIN = $(BASE)/bin

#PREFIX = valgrind
PYTHON = python
APREPRO = $(BIN)/aprepro
FASTQ = $(BIN)/fastq
GJOIN = $(BIN)/gjoin
GEN3D = $(BIN)/gen3d
GENSHELL= $(BIN)/genshell
GREPOS = $(BIN)/grepos
IO_SHELL = $(BIN)/io_shell
EXOTXT = $(BIN)/exotxt
TXTEXO = $(BIN)/txtexo
EPU = $(BIN)/epu
EXODIFF = $(BIN)/exodiff
DECOMP = $(BIN)/decomp
EXO2MAT = $(BIN)/exo2mat
MAT2EXO = $(BIN)/mat2exo
CONJOIN = $(BIN)/conjoin
APREPRO = $(PREFIX) $(BIN)/aprepro
FASTQ = $(PREFIX) $(BIN)/fastq
GJOIN = $(PREFIX) $(BIN)/gjoin
GEN3D = $(PREFIX) $(BIN)/gen3d
GENSHELL= $(PREFIX) $(BIN)/genshell
GREPOS = $(PREFIX) $(BIN)/grepos
IO_SHELL = $(PREFIX) $(BIN)/io_shell
EXOTXT = $(PREFIX) $(BIN)/exotxt
TXTEXO = $(PREFIX) $(BIN)/txtexo
EPU = $(PREFIX) $(BIN)/epu
EXODIFF = $(PREFIX) $(BIN)/exodiff
DECOMP = $(PREFIX) $(BIN)/decomp
EXO2MAT = $(PREFIX) $(BIN)/exo2mat
MAT2EXO = $(PREFIX) $(BIN)/mat2exo
CONJOIN = $(PREFIX) $(BIN)/conjoin
RM = rm -f

.SUFFIXES: .g .fsq .g3
Expand Down

0 comments on commit 1516aa8

Please sign in to comment.