commit 07e0027af49a1071c14b45d3d6ff576e590a27c2
Author: aabacchus <ben@bvnf.space>
Date: Sun, 20 Jun 2021 19:50:00 +0100
initial commit
Diffstat:
3 files changed, 10 insertions(+), 0 deletions(-)
diff --git a/.gitignore b/.gitignore
@@ -0,0 +1,2 @@
+irC
+*.o
diff --git a/Makefile b/Makefile
@@ -0,0 +1,6 @@
+CFLAGS += -Wall -Wextra -Wpedantic
+irC: main.c
+ $(CC) -g $(CFLAGS) main.c -o $@
+
+clean:
+ rm irC
diff --git a/README b/README
@@ -0,0 +1,2 @@
+An attempt at writing an irc client in C. Supposedly not too difficult,
+but it's mostly a learning exercise for me.