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.
12 lines
308 B
Makefile
12 lines
308 B
Makefile
LDLIBS = -lraylib
|
|
CXXFLAGS += -Wall -g -Wextra -pedantic -Werror
|
|
|
|
pong: main.o easysock.o paddle.hpp ball.hpp math-helpers.hpp
|
|
g++ $(CXXFLAGS) main.o easysock.o -o pong $(LDLIBS)
|
|
|
|
main.o : main.cpp
|
|
g++ $(CXXFLAGS) -c main.cpp -o main.o
|
|
|
|
easysock.o : easysock.c
|
|
g++ $(CXXFLAGS) -c easysock.c -o easysock.o
|