From fc35fab9ea96fb60fcf113bbb2498a25fd4d8a45 Mon Sep 17 00:00:00 2001 From: winapiadmin <138602885+winapiadmin@users.noreply.github.com> Date: Mon, 21 Jul 2025 11:17:29 +0700 Subject: [PATCH 1/2] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1841726..40d1af3 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # cppchess_engine -A minimal UCI-compilant (no time control now) chess engine +A minimal UCI-compliant chess engine that have time control. -**Source**: [Disservin/chess-library](https://github.com/Disservin/chess-library) +**Library used**: [Disservin/chess-library](https://github.com/Disservin/chess-library) From a24191ca89e378b17fb5445eab35f1cee997ee27 Mon Sep 17 00:00:00 2001 From: winapiadmin <138602885+winapiadmin@users.noreply.github.com> Date: Mon, 5 Jan 2026 20:48:52 +0700 Subject: [PATCH 2/2] Delete Makefile --- Makefile | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 Makefile diff --git a/Makefile b/Makefile deleted file mode 100644 index 36d7111..0000000 --- a/Makefile +++ /dev/null @@ -1,32 +0,0 @@ -# Compiler and Flags -CXX = g++ - -# Source files and object files -SRC = main.cpp eval.cpp search.cpp tt.cpp movepick.cpp timeman.cpp uci.cpp ucioptions.cpp -OBJ = $(SRC:.cpp=.o) - -# Output file -EXEC = chess_engine - -# Default target: build the project -all: $(EXEC) - -# Linking the object files into the executable -$(EXEC): $(OBJ) - $(CXX) $(LDFLAGS) -o $(EXEC) $(OBJ) - -# Rule to build object files from source files -%.o: %.cpp - $(CXX) $(CXXFLAGS) -std=c++17 -c $< -o $@ - -# Clean up the compiled files -clean: - rm -f $(OBJ) $(EXEC) - -# To run the program after compilation -run: $(EXEC) - ./$(EXEC) - -# Rebuild the project -rebuild: clean all -