FemboyGeometryGL/Makefile
2021-04-08 16:41:18 -07:00

9 lines
253 B
Makefile

CFLAGS=-DGL_SILENCE_DEPRECATION $(shell pkg-config --cflags gl) $(shell pkg-config --cflags glut)
LIBS=$(shell pkg-config --libs gl) $(shell pkg-config --libs glut)
all:
g++ -o geometry ./FemboyGeometry/*.cpp $(CFLAGS) $(LIBS)
clean:
rm -f geometry