summaryrefslogtreecommitdiffstats
path: root/makefile
diff options
context:
space:
mode:
authorGalin Simeonov <gts@volconst.com>2021-09-24 21:13:13 +0300
committerGalin Simeonov <gts@volconst.com>2021-09-24 21:13:13 +0300
commit5a51dd322d438845617c2d43b6481e5c4bbe3bf8 (patch)
treeb9593aee5806db7d56fa37d66e617d037de3b82f /makefile
parent64bf27391629388db4fcde1ae5eb8c184471874f (diff)
downloadvolgit-5a51dd322d438845617c2d43b6481e5c4bbe3bf8.tar.gz
learned how to iterate over commits
Diffstat (limited to 'makefile')
-rw-r--r--makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/makefile b/makefile
index 93ab295..3117c76 100644
--- a/makefile
+++ b/makefile
@@ -1,8 +1,8 @@
volgit: volgit.o
- c99 volgit.o -lgit2 -o volgit
+ c99 -g volgit.o -lgit2 -o volgit
volgit.o: volgit.c
- c99 -c volgit.c -o volgit.o
+ c99 -g -c volgit.c -o volgit.o
clean:
rm -rf volgit.o volgit