blob: 5f8ba408bbf9c8d35c420232c1b8ec67866f147b (
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
|
INCLUDES = $(KOFFICE_INCLUDES) $(KOPAINTER_INCLUDES) \
-I$(srcdir)/.. \
-I$(srcdir)/../core \
-I$(srcdir)/../commands \
$(all_includes)
noinst_LTLIBRARIES = libkarbonshapes.la
noinst_HEADERS = \
vellipse.h \
vpolyline.h \
vpolygon.h \
vrectangle.h \
vsinus.h \
vspiral.h \
vstar.h
libkarbonshapes_la_SOURCES = \
vellipse.cpp \
vpolyline.cpp \
vpolygon.cpp \
vrectangle.cpp \
vsinus.cpp \
vspiral.cpp \
vstar.cpp
libkarbonshapes_la_METASOURCES = \
AUTO
|