diff options
Diffstat (limited to 'karbon/tools/Makefile.am')
-rw-r--r-- | karbon/tools/Makefile.am | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/karbon/tools/Makefile.am b/karbon/tools/Makefile.am new file mode 100644 index 00000000..71ba99b8 --- /dev/null +++ b/karbon/tools/Makefile.am @@ -0,0 +1,63 @@ +kde_services_DATA = karbondefaulttools.desktop + +INCLUDES = $(KOFFICE_INCLUDES) $(KOPAINTER_INCLUDES) \ + -I$(srcdir)/.. \ + -I$(srcdir)/../commands \ + -I$(srcdir)/../core \ + -I$(srcdir)/../dialogs \ + -I$(srcdir)/../widgets \ + -I$(srcdir)/../dockers \ + -I$(srcdir)/../render \ + -I$(srcdir)/../shapes \ + -I$(srcdir)/../visitors \ + $(all_includes) + +kde_module_LTLIBRARIES = karbon_defaulttools.la + +noinst_HEADERS = \ + vcurvefit.h \ + vrotatetool.h \ + vselectnodestool.h \ + vselecttool.h \ + vsheartool.h \ + vellipsetool.h \ + vgradienttool.h \ + vpatterntool.h \ + vpenciltool.h \ + vpolygontool.h \ + vpolylinetool.h \ + vrectangletool.h \ + vroundrecttool.h \ + vshapetool.h \ + vsinustool.h \ + vspiraltool.h \ + vstartool.h \ + vtexttool.h \ + vdefaulttools.h + +karbon_defaulttools_la_SOURCES = \ + vcurvefit.cc \ + vrotatetool.cc \ + vselectnodestool.cc \ + vselecttool.cc \ + vsheartool.cc \ + vellipsetool.cc \ + vgradienttool.cc \ + vpatterntool.cc \ + vpenciltool.cc \ + vpolygontool.cc \ + vpolylinetool.cc \ + vrectangletool.cc \ + vroundrecttool.cc \ + vshapetool.cc \ + vsinustool.cc \ + vspiraltool.cc \ + vstartool.cc \ + vtexttool.cc \ + vdefaulttools.cc + +karbon_defaulttools_la_LIBADD = $(LIB_KPARTS) $(LIB_KOFFICEUI) ../libkarboncommon.la +karbon_defaulttools_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN) + +karbon_defaulttools_la_METASOURCES = \ + AUTO |