first commit
This commit is contained in:
commit
3b701c0419
6 changed files with 930 additions and 0 deletions
10
makefile
Normal file
10
makefile
Normal 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)
|
Loading…
Add table
Add a link
Reference in a new issue