blob: 36a918adc244f1e4ce1a4be21696b97c1f4879f4 (
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
|
INCLUDES = $(KOFFICE_INCLUDES) $(KOPAINTER_INCLUDES) \
-I$(srcdir)/.. \
-I$(srcdir)/../core \
-I$(srcdir)/../commands \
-I$(srcdir)/../render \
-I$(srcdir)/../tools \
-I$(srcdir)/../widgets \
-I$(srcdir)/../dialogs \
$(all_includes)
noinst_LTLIBRARIES = \
libkarbondockers.la
noinst_HEADERS = \
vcolordocker.h \
vdocumentdocker.h \
vstrokedocker.h \
vstyledocker.h \
vtransformdocker.h
libkarbondockers_la_SOURCES = \
dummy.cpp \
vcolordocker.cpp \
vdocumentdocker.cpp \
vstrokedocker.cpp \
vstyledocker.cpp \
vtransformdocker.cpp
libkarbondockers_la_METASOURCES = AUTO
DISTCLEANFILES = \
dummy.cpp
dummy.cpp:
echo > dummy.cpp
|