6 lines
210 B
Makefile
6 lines
210 B
Makefile
LIBS=glfw3 glew
|
|
CPPFLAGS=-Wall -Wextra $(shell pkg-config --cflags $(LIBS)) -ggdb -std=c++20
|
|
LDLIBS=$(shell pkg-config --libs $(LIBS)) -lm
|
|
|
|
hophop: hophop.cpp
|
|
$(CXX) hophop.cpp -o hophop $(CPPFLAGS) $(LDLIBS)
|