aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2012-11-07 22:08:41 +0100
committerMattias Andrée <maandree@operamail.com>2012-11-07 22:08:41 +0100
commit1ec972c79217a5eef97ad43c34cbbb5208a9d189 (patch)
treea42641b3f63496c64755719534c2be81bf20268d /Makefile
parentRevert "free allocated mojo" (diff)
parent... (diff)
downloadhungarian-algorithm-n3-1ec972c79217a5eef97ad43c34cbbb5208a9d189.tar.gz
hungarian-algorithm-n3-1ec972c79217a5eef97ad43c34cbbb5208a9d189.tar.bz2
hungarian-algorithm-n3-1ec972c79217a5eef97ad43c34cbbb5208a9d189.tar.xz
conflict resolve
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 4c02575..79c80f6 100644
--- a/Makefile
+++ b/Makefile
@@ -1,11 +1,14 @@
all:
gcc -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