summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authormrb0nk500 <b0nk@b0nk.xyz>2021-06-13 15:46:27 -0400
committermrb0nk500 <b0nk@b0nk.xyz>2021-06-13 15:46:27 -0400
commitc7789e76393c033221e7d890fafbda3bed468a1a (patch)
treebca33898e3d89d8084d1ebd07fdef2758bd5087f /Makefile
parent6c244ade251499eea92be4dff8bd3793bcc27817 (diff)
Link with libgit2 now.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 56c09b0..bdc5b87 100644
--- a/Makefile
+++ b/Makefile
@@ -17,7 +17,7 @@ OBJ_NAME = pullreqd
all : clean $(OBJ_NAME)
$(OBJ_NAME) : $(OBJS)
- $(CC) $(OBJS) $(CFLAGS) -lpthread -o $(OBJ_NAME)
+ $(CC) $(OBJS) $(CFLAGS) -lpthread -lgit2 -o $(OBJ_NAME)
%.o : %.c
$(CC) -c $< -o $@ $(CFLAGS)
clean :