blob: d97d7989822459deba295b1da54d770bde53aee0 (
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.cc \
calcpaths.cc \
common.cpp \
conic-common.cpp \
coordinate.cpp \
coordinate_system.cpp \
cubic-common.cc \
goniometry.cc \
guiaction.cc \
kigfiledialog.cc \
kiginputdialog.cc \
kignumerics.cpp \
kigpainter.cpp \
kigtransform.cpp \
lists.cc \
object_constructor.cc \
object_hierarchy.cc \
rect.cc \
screeninfo.cc \
special_constructors.cc
libmisc_la_LIBADD=-lm
METASOURCES=AUTO
|