This repository has been archived on 2025-09-04. You can view files and clone it, but cannot push or open issues or pull requests.
hophop/Makefile
2021-12-29 13:43:41 +01:00

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)