Skip to content
Snippets Groups Projects
Commit 53622954 authored by Elias Pipping's avatar Elias Pipping Committed by Elias Pipping
Browse files

Provide targets for running via gdb and valgrind

parent 540c1025
No related branches found
No related tags found
No related merge requests found
......@@ -8,7 +8,13 @@ bin_PROGRAMS = \
.PHONY: run-one-body-sample
run-one-body-sample: one-body-sample
./one-body-sample
libtool --mode execute ./one-body-sample
run-one-body-sample-valgrind: one-body-sample
libtool --mode execute valgrind ./one-body-sample
run-one-body-sample-gdb: one-body-sample
libtool --mode execute gdb ./one-body-sample
one_body_sample_SOURCES = \
one-body-sample.cc
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment