Move bezier stuff to it's own module

This commit is contained in:
2014-06-01 15:12:37 +02:00
parent af52bd4085
commit ea8d08204c
6 changed files with 129 additions and 55 deletions

View File

@@ -1,8 +1,8 @@
include ../common.mk
TARGET = drow-engine
HEADERS = err.h common.h print.h filereader.h gl_draw.h vector.h half_edge.h
OBJECTS = print.o filereader.o gl_draw.o vector.o half_edge.o half_edge_AS.o
HEADERS = err.h common.h print.h filereader.h gl_draw.h vector.h half_edge.h bezier.h
OBJECTS = print.o filereader.o gl_draw.o vector.o half_edge.o half_edge_AS.o bezier.o
INCS = -I.
CFLAGS += $(shell $(PKG_CONFIG) --cflags gl glu glib-2.0)