aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2012-11-07 22:05:35 +0100
committerMattias Andrée <maandree@operamail.com>2012-11-07 22:05:35 +0100
commit67fae6d1f88a885422b45212f2dc2229cc48a6a9 (patch)
treea5d21a7cf79be68adc4a8e88533b0c3a7b95e42c /Makefile
parentfree allocated mojo (diff)
downloadhungarian-algorithm-n3-67fae6d1f88a885422b45212f2dc2229cc48a6a9.tar.gz
hungarian-algorithm-n3-67fae6d1f88a885422b45212f2dc2229cc48a6a9.tar.bz2
hungarian-algorithm-n3-67fae6d1f88a885422b45212f2dc2229cc48a6a9.tar.xz
misc
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 96d0d27..75eade0 100644
--- a/Makefile
+++ b/Makefile
@@ -1,11 +1,14 @@
all:
gcc -g -o "hungarian"{,.c}
+nodebug:
+ gcc -o "hungarian"{,.c}
+
test:
./"hungarian"
valgrind:
- valgrind --leak-check=full ./"hungarian"
+ valgrind --tool=memcheck --leak-check=full ./"hungarian"
clean:
if [ -f "hungarian" ]; then unlink "hungarian"; fi