blob: be1bb571bedbb6a3058d2ee1b840a815171e40bc (
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
46
47
48
49
50
|
INCLUDES=$(all_includes)
noinst_LTLIBRARIES=libmisc.la
noinst_HEADERS = \
argsparser.h \
builtin_stuff.h \
calcpaths.h \
common.h \
conic-common.h \
coordinate.h \
coordinate_system.h \
cubic-common.h \
goniometry.h \
guiaction.h \
kigfiledialog.h \
kiginputdialog.h \
kignumerics.h \
kigpainter.h \
kigtransform.h \
lists.h \
object_constructor.h \
object_hierarchy.h \
rect.h \
screeninfo.h \
special_constructors.h
libmisc_la_SOURCES = \
argsparser.cpp \
builtin_stuff.cpp \
calcpaths.cpp \
common.cpp \
conic-common.cpp \
coordinate.cpp \
coordinate_system.cpp \
cubic-common.cpp \
goniometry.cpp \
guiaction.cpp \
kigfiledialog.cpp \
kiginputdialog.cpp \
kignumerics.cpp \
kigpainter.cpp \
kigtransform.cpp \
lists.cpp \
object_constructor.cpp \
object_hierarchy.cpp \
rect.cpp \
screeninfo.cpp \
special_constructors.cpp
libmisc_la_LIBADD=-lm
METASOURCES=AUTO
|