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.
9 lines
196 B
Makefile
9 lines
196 B
Makefile
11 months ago
|
LDLIBS = -lraylib
|
||
|
CXXFLAGS += -Wall -Wextra -pedantic -Werror
|
||
|
|
||
|
pong: main.o paddle.hpp ball.hpp
|
||
|
g++ $(CXXFLAGS) main.o -o pong $(LDLIBS)
|
||
|
|
||
|
main.o : main.cpp
|
||
|
g++ $(CXXFLAGS) -c main.cpp -o main.o
|