commit 295a8cb88f5fde3efa919fba89707107cbecab1c
Author: benjamin paul <bpaul@bpaul.xyz>
Date: Fri, 6 Aug 2021 20:15:58 +1000
initial commit
Diffstat:
4 files changed, 27 insertions(+), 0 deletions(-)
diff --git a/.gitignore b/.gitignore
@@ -0,0 +1,3 @@
+.ccls-cache
+*.o
+bpaul-chess
diff --git a/Makefile b/Makefile
@@ -0,0 +1,13 @@
+.POSIX:
+
+NAME = bpaul-chess
+
+CC = cc
+CFLAGS = -O2
+
+OBJS = src/main.o
+
+all: $(NAME)
+
+$(NAME): $(OBJS)
+ $(CC) $(LDFLAGS) -o $(NAME) $(OBJS)
diff --git a/README b/README
@@ -0,0 +1,7 @@
+bpaul-chess
+-----------
+
+This is (or will be) a UCI compliant chess engine.
+
+This is not my first chess engine but I stopped development of my other one
+because I felt like I copied too much code.
diff --git a/src/main.c b/src/main.c
@@ -0,0 +1,4 @@
+int
+main() {
+ return 0;
+}