blob: 9df79e8b9e07a3d3e42bf1a78015cc499dc5ef1e (
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.cc \
vcolordocker.cc \
vdocumentdocker.cc \
vstrokedocker.cc \
vstyledocker.cc \
vtransformdocker.cc
libkarbondockers_la_METASOURCES = AUTO
DISTCLEANFILES = \
dummy.cc
dummy.cc:
echo > dummy.cc
|