blob: 5ef59b3c3b9293fdff96bd2b2815d30062784934 (
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
|
## Makefile.am fragment sourced by src/Makefile.am.
trace/all: trace/libtrace.a
trace/clean:
rm -f trace/libtrace.a $(trace_libtrace_a_OBJECTS)
trace_libtrace_a_SOURCES = \
trace/pool.h \
trace/trace.h \
trace/trace.cpp \
trace/imagemap-gdk.cpp \
trace/imagemap-gdk.h \
trace/imagemap.cpp \
trace/imagemap.h \
trace/quantize.h \
trace/quantize.cpp \
trace/filterset.h \
trace/filterset.cpp \
trace/siox.h \
trace/siox.cpp \
trace/potrace/auxiliary.h \
trace/potrace/bitmap.h \
trace/potrace/curve.cpp \
trace/potrace/curve.h \
trace/potrace/decompose.cpp \
trace/potrace/decompose.h \
trace/potrace/greymap.cpp \
trace/potrace/greymap.h \
trace/potrace/lists.h \
trace/potrace/potracelib.cpp \
trace/potrace/potracelib.h \
trace/potrace/progress.h \
trace/potrace/render.cpp \
trace/potrace/render.h \
trace/potrace/trace.cpp \
trace/potrace/trace.h \
trace/potrace/inkscape-potrace.cpp \
trace/potrace/inkscape-potrace.h
|