~ubuntu-branches/ubuntu/precise/koffice/precise

« back to all changes in this revision

Viewing changes to krita/colorspaces/rgb_f32/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2006-04-20 21:38:53 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20060420213853-j5lxluqvymxt2zny
Tags: 1:1.5.0-0ubuntu2
UbuntuĀ uploadĀ 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Install the desktop file needed to detect the plugin
 
2
kde_services_DATA = krita_rgb_f32_plugin.desktop
 
3
 
 
4
INCLUDES  = \
 
5
        -I$(srcdir)/../../sdk \
 
6
        -I$(srcdir)/../../kritacolor/color_strategy/ \
 
7
        -I$(srcdir)/../../kritacolor/ \
 
8
        $(KOFFICE_INCLUDES) \
 
9
        $(all_includes)
 
10
 
 
11
 
 
12
lib_LTLIBRARIES = libkrita_rgb_f32.la
 
13
libkrita_rgb_f32_la_SOURCES = kis_rgb_f32_colorspace.cc
 
14
libkrita_rgb_f32_la_LDFLAGS = $(all_libraries)
 
15
libkrita_rgb_f32_la_LIBADD =  ../../kritacolor/libkritacolor.la
 
16
 
 
17
# Install this plugin in the KDE modules directory
 
18
kde_module_LTLIBRARIES = krita_rgb_f32_plugin.la
 
19
 
 
20
# Srcs for the plugin
 
21
krita_rgb_f32_plugin_la_SOURCES = rgb_f32_plugin.cc
 
22
noinst_HEADERS = rgb_f32_plugin.h kis_rgb_f32_colorspace.h
 
23
 
 
24
krita_rgb_f32_plugin_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN)
 
25
krita_rgb_f32_plugin_la_LIBADD =  libkrita_rgb_f32.la ../../kritacolor/libkritacolor.la
 
26
 
 
27
krita_rgb_f32_plugin_la_METASOURCES = AUTO
 
28
 
 
29
if include_kunittest_tests
 
30
TESTSDIR = tests
 
31
endif
 
32
 
 
33
SUBDIRS = . $(TESTSDIR)
 
34