CFLAGS = -DTEST_BRUSH -g
LFLAGS = -lm
OBJS = brush.o render.o

brush: $(OBJS)
	gcc $(OBJS) $(LFLAGS) -o brush

clean:
	rm -f $(OBJS)
