aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..4c02575
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,15 @@
+all:
+ gcc -o "hungarian"{,.c}
+
+test:
+ ./"hungarian"
+
+valgrind:
+ valgrind --leak-check=full ./"hungarian"
+
+clean:
+ if [ -f "hungarian" ]; then unlink "hungarian"; fi
+
+
+.PHONY: test valgrind clean
+