~ubuntu-branches/ubuntu/vivid/rawstudio/vivid

« back to all changes in this revision

Viewing changes to plugins/denoise/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Bernd Zeimetz
  • Date: 2011-07-28 17:36:32 UTC
  • mfrom: (2.1.11 upstream)
  • Revision ID: james.westby@ubuntu.com-20110728173632-5czluz9ye3c83zc5
Tags: 2.0-1
* [3750b2cf] Merge commit 'upstream/2.0'
* [63637468] Removing Patch, not necessary anymore.
* [2fb580dc] Add new build-dependencies.
* [c57d953b] Run dh_autoreconf due to patches in configure.in
* [13febe39] Add patch to remove the libssl requirement.
* [5ae773fe] Replace libjpeg62-dev by libjpeg8-dev :)
* [1969d755] Don't build static libraries.
* [7cfe0a2e] Add a patch to fix the plugin directory path.
  As plugins are shared libraries, they need to go into /usr/lib,
  not into /usr/share.
  Thanks to Andrew McMillan
* [c1d0d9dd] Don't install .la files for all plugins and libraries.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
plugindir = $(libdir)/rawstudio/plugins
 
2
 
 
3
AM_CFLAGS =\
 
4
        -Wall \
 
5
        -g3 \
 
6
        -O4
 
7
 
 
8
AM_CXXFLAGS = $(AM_CFLAGS)
 
9
 
 
10
INCLUDES = \
 
11
        -DPACKAGE_DATA_DIR=\""$(datadir)"\" \
 
12
        -DPACKAGE_LOCALE_DIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \
 
13
        @PACKAGE_CFLAGS@ -ffast-math \
 
14
        -I$(top_srcdir)/librawstudio/ \
 
15
        -I$(top_srcdir)/
 
16
 
 
17
lib_LTLIBRARIES = denoise.la
 
18
 
 
19
libdir = $(datadir)/rawstudio/plugins/
 
20
 
 
21
denoise_la_LIBADD = @PACKAGE_LIBS@
 
22
denoise_la_LDFLAGS = -module -avoid-version
 
23
denoise_la_SOURCES = denoise.c \
 
24
        complexblock.cpp complexblock.h \
 
25
        complexfilter.cpp complexfilter.h \
 
26
        complexfilter-x86.cpp \
 
27
        denoiseinterface.h \
 
28
        denoisethread.cpp denoisethread.h \
 
29
        fftdenoiser.cpp fftdenoiser.h \
 
30
        fftdenoiseryuv.cpp fftdenoiseryuv.h \
 
31
        fftwindow.cpp fftwindow.h \
 
32
        floatimageplane.cpp floatimageplane.h \
 
33
        floatplanarimage.cpp floatplanarimage-x86.cpp floatplanarimage.h \
 
34
        jobqueue.cpp jobqueue.h \
 
35
        planarimageslice.cpp planarimageslice.h