You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
LDLIBS = -lraylib
|
|
|
|
CXXFLAGS += -Wall -Wextra -pedantic -Werror
|
|
|
|
|
|
|
|
pong: main.o paddle.hpp ball.hpp math-helpers.hpp
|
|
|
|
g++ $(CXXFLAGS) main.o -o pong $(LDLIBS)
|
|
|
|
|
|
|
|
main.o : main.cpp
|
|
|
|
g++ $(CXXFLAGS) -c main.cpp -o main.o
|