Skip to content

Commit 41bf217

Browse files
committed
some file removed
2 parents 8a3aa26 + 08822de commit 41bf217

File tree

16 files changed

+2666
-3
lines changed

16 files changed

+2666
-3
lines changed

Makefile

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
11
# Compiler and Flags
22
CXX = g++
3+
<<<<<<< HEAD
34

45
# Source files and object files
56
SRC = main.cpp eval.cpp search.cpp
7+
=======
8+
CXXFLAGS = -march=native -mtune=native -msse4.2 -std=c++17 $(FLAGS) -DNDEBUG
9+
10+
# Source files and object files
11+
SRC = main.cpp eval.cpp search.cpp pieces.cpp pawns.cpp patterns.cpp
12+
>>>>>>> 08822de3005f1e1458cbbb02037d1f714fcd46e7
613
OBJ = $(SRC:.cpp=.o)
714

815
# Output file
@@ -13,11 +20,19 @@ all: $(EXEC)
1320

1421
# Linking the object files into the executable
1522
$(EXEC): $(OBJ)
23+
<<<<<<< HEAD
1624
$(CXX) $(CXXFLAGS) -std=c++17 -o $(EXEC) $(OBJ)
1725

1826
# Rule to build object files from source files
1927
%.o: %.cpp
2028
$(CXX) $(CXXFLAGS) -std=c++17 -c $< -o $@
29+
=======
30+
$(CXX) $(CXXFLAGS) -o $(EXEC) $(OBJ)
31+
32+
# Rule to build object files from source files
33+
%.o: %.cpp
34+
$(CXX) $(CXXFLAGS) -c $< -o $@
35+
>>>>>>> 08822de3005f1e1458cbbb02037d1f714fcd46e7
2136

2237
# Clean up the compiled files
2338
clean:

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# cppchess_engine
2+
3+
A minimal chess engine (not UCI, not XBoard, but only search and evaluation functions)
4+
5+
Source: Disservin/chess-library/include

0 commit comments

Comments
 (0)