Blame c++/contourgl/Makefile

Ivan Mahonin c76ce8
DEPLIBS = gl x11 OpenCL
Ivan Mahonin f2b8c4
Ivan Mahonin c76ce8
CXXFLAGS = -O0 -g -Wall -fmessage-length=0 `pkg-config --cflags $(DEPLIBS)` -DGL_GLEXT_PROTOTYPES
Ivan Mahonin c76ce8
DEPS = clcontext.h   contour.h   contourgl.h   contourbuilder.h   geometry.h   polyspan.h   rendersw.h   shaders.h   test.h   triangulator.h   \
Ivan Mahonin c76ce8
       clcontext.cpp contour.cpp contourgl.cpp contourbuilder.cpp              polyspan.cpp rendersw.cpp shaders.cpp test.cpp triangulator.cpp
Ivan Mahonin c76ce8
OBJS = clcontext.o   contour.o   contourgl.o   contourbuilder.o                polyspan.o   rendersw.o   shaders.o   test.o   triangulator.o
Ivan Mahonin faaf7d
LIBS = `pkg-config --libs $(DEPLIBS)`
Ivan Mahonin f2b8c4
TARGET = contourgl
Ivan Mahonin f2b8c4
Ivan Mahonin f2b8c4
$(TARGET):	$(OBJS)
Ivan Mahonin f2b8c4
	$(CXX) -o $(TARGET) $(OBJS) $(LIBS)
Ivan Mahonin f2b8c4
Ivan Mahonin f2b8c4
all:	$(TARGET)
Ivan Mahonin f2b8c4
Ivan Mahonin f2b8c4
clean:
Ivan Mahonin f2b8c4
	rm -f $(OBJS) $(TARGET)