Initial commit

This commit is contained in:
2026-01-09 14:03:09 +01:00
commit 461139835f
9 changed files with 668 additions and 0 deletions

27
Makefile Normal file
View File

@@ -0,0 +1,27 @@
SRCS = ./src/main.cpp \
./src/Board.cpp \
./src/Game.cpp
NAME = CelebratingTetris
FLAGS = -lsfml-graphics -lsfml-window -lsfml-system
OBJS = $(SRCS:.cpp=.o)
COMPILER = clang++
all: $(NAME)
$(NAME): $(OBJS)
$(COMPILER) -o $(NAME) $(FLAGS) $(OBJS)
clean:
rm -fr $(OBJS)
fclean: clean
rm -fr $(NAME)
re: fclean all