first commit

This commit is contained in:
patrick_pluto 2024-09-08 18:50:16 +02:00
commit 3b701c0419
6 changed files with 930 additions and 0 deletions

10
makefile Normal file
View file

@ -0,0 +1,10 @@
CXX = g++
CXXFLAGS = -lSDL2 -lSDL2_image
SRCS = main.cpp
TARGET = flappyBird
all: $(SRCS)
$(CXX) -o $(TARGET) $(SRCS) $(CXXFLAGS)
clean:
rm -f $(TARGET)