~ubuntu-branches/ubuntu/intrepid/digikam/intrepid

« back to all changes in this revision

Viewing changes to digikam/imageplugins/blurfx/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Mark Purcell
  • Date: 2008-07-17 20:25:39 UTC
  • mfrom: (1.3.2 upstream) (37 hardy)
  • mto: This revision was merged to the branch mainline in revision 39.
  • Revision ID: james.westby@ubuntu.com-20080717202539-1bw3w3nrsso7yj4z
* New upstream release
  - digiKam 0.9.4 Release Plan (KDE3) ~ 13 July 08 (Closes: #490144)
* DEB_CONFIGURE_EXTRA_FLAGS := --without-included-sqlite3
* Debhelper compatibility level V7
* Install pixmaps in debian/*.install
* Add debian/digikam.lintian-overrides

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
METASOURCES = AUTO
 
2
 
 
3
INCLUDES = -I$(top_srcdir)/digikam/utilities/imageeditor/editor \
 
4
               -I$(top_srcdir)/digikam/utilities/imageeditor/canvas \
 
5
               -I$(top_srcdir)/digikam/libs/histogram \
 
6
               -I$(top_srcdir)/digikam/libs/levels \
 
7
               -I$(top_srcdir)/digikam/libs/curves \
 
8
               -I$(top_srcdir)/digikam/libs/whitebalance \
 
9
               -I$(top_srcdir)/digikam/libs/widgets/common \
 
10
               -I$(top_srcdir)/digikam/libs/widgets/iccprofiles \
 
11
               -I$(top_srcdir)/digikam/libs/widgets/imageplugins \
 
12
               -I$(top_srcdir)/digikam/libs/dialogs \
 
13
               -I$(top_srcdir)/digikam/libs/dimg \
 
14
               -I$(top_srcdir)/digikam/libs/dmetadata \
 
15
               -I$(top_srcdir)/digikam/libs/dimg/filters \
 
16
               -I$(top_srcdir)/digikam/digikam \
 
17
               $(LIBKDCRAW_CFLAGS) \
 
18
               $(all_includes) 
 
19
 
 
20
digikamimageplugin_blurfx_la_SOURCES = imageplugin_blurfx.cpp \
 
21
                                           imageeffect_blurfx.cpp blurfx.cpp 
 
22
 
 
23
digikamimageplugin_blurfx_la_LIBADD = $(LIB_KPARTS) \
 
24
                                          $(top_builddir)/digikam/digikam/libdigikam.la 
 
25
 
 
26
digikamimageplugin_blurfx_la_LDFLAGS = -module $(KDE_PLUGIN) $(all_libraries) 
 
27
 
 
28
kde_services_DATA = digikamimageplugin_blurfx.desktop
 
29
 
 
30
kde_module_LTLIBRARIES = digikamimageplugin_blurfx.la 
 
31
 
 
32
rcdir = $(kde_datadir)/digikam
 
33
rc_DATA = digikamimageplugin_blurfx_ui.rc     
 
34