blob: 6982d0a980b598ebdde20cc136554bd8455eb835 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
## Makefile.am fragment sourced by src/Makefile.am.
livarot/all: livarot/libvarot.a
livarot/clean:
rm -f livarot/libvarot.a $(livarot_libvarot_a_OBJECTS)
livarot_libvarot_a_SOURCES = \
livarot/AVL.cpp \
livarot/AVL.h \
livarot/AlphaLigne.cpp \
livarot/AlphaLigne.h \
livarot/BitLigne.cpp \
livarot/BitLigne.h \
livarot/float-line.cpp \
livarot/float-line.h \
livarot/int-line.cpp \
livarot/int-line.h \
livarot/LivarotDefs.h \
livarot/MyMath.h \
livarot/MySeg.cpp \
livarot/MySeg.h \
livarot/Path.cpp \
livarot/Path.h \
livarot/PathConversion.cpp \
livarot/PathCutting.cpp \
livarot/PathOutline.cpp \
livarot/PathSimplify.cpp \
livarot/PathStroke.cpp \
livarot/Shape.cpp \
livarot/Shape.h \
livarot/ShapeDraw.cpp \
livarot/ShapeMisc.cpp \
livarot/ShapeRaster.cpp \
livarot/ShapeSweep.cpp \
livarot/sweep-tree-list.cpp \
livarot/sweep-tree-list.h \
livarot/sweep-tree.cpp \
livarot/sweep-tree.h \
livarot/sweep-event.cpp \
livarot/sweep-event.h \
livarot/sweep-event-queue.h \
livarot/livarot-forward.h \
livarot/path-description.h \
livarot/path-description.cpp
|