blob: 35828299a0726703fbd5679bcedf8457a1aea1cc (
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
51
52
53
|
INCLUDES = $(KOFFICE_INCLUDES) $(KOPAINTER_INCLUDES) \
-I$(srcdir)/.. \
-I$(srcdir)/../core \
-I$(srcdir)/../commands \
-I$(srcdir)/../render \
-I$(srcdir)/../dialogs \
-I$(srcdir)/../dockers \
-I$(srcdir)/../tools \
$(all_includes)
noinst_LTLIBRARIES = \
libkarbonwidgets.la
noinst_HEADERS = \
vcanvas.h \
vcolorslider.h \
vgradientwidget.h \
vgradienttabwidget.h \
vreference.h \
vstrokefillpreview.h \
vtranslate.h \
vselecttoolbar.h \
vsmallpreview.h \
vstatebutton.h \
vtoolbox.h \
vtypebuttonbox.h \
vruler.h
libkarbonwidgets_la_SOURCES = \
dummy.cpp \
vcanvas.cpp \
vcolorslider.cpp \
vgradientwidget.cpp \
vgradienttabwidget.cpp \
vreference.cpp \
vstrokefillpreview.cpp \
vtranslate.cpp \
vselecttoolbar.cpp \
vsmallpreview.cpp \
vstatebutton.cpp \
vtoolbox.cpp \
vtypebuttonbox.cpp \
vruler.cpp
libkarbonwidgets_la_METASOURCES = \
AUTO
DISTCLEANFILES = \
dummy.cpp
dummy.cpp:
echo > dummy.cpp
|