8 lines
233 B
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)
|