This repository has been archived on 2026-04-25. You can view files and clone it, but cannot push or open issues or pull requests.
FlappyBird/Makefile

14 lines
211 B
Makefile
Raw Permalink Normal View History

2024-05-08 12:39:35 -05:00
# Variables
LIBS:= -lSDL2main -lSDL2 -lSDL2_mixer -lSDL2_image
# Instructions
all: compile link clean
compile:
g++ -c -I include source/*.cpp
link:
g++ *.o -L lib $(LIBS) -o debug/flappybird
clean:
rm *.o