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

8 lines
233 B
Makefile

LIBS=glfw3 glew
CPPFLAGS=-Wall -Wextra $(shell pkg-config --cflags $(LIBS)) -ggdb -std=c++20 -Iosh.h
LDLIBS=$(shell pkg-config --libs $(LIBS)) -lm
CPP=$(wildcard src/*.cpp)
hophop: $(CPP)
$(CXX) $^ -o hophop $(CPPFLAGS) $(LDLIBS)