blob: c02087ee6e3d08dba0828ccbb75270d1721e1dcd (
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
30
31
32
|
SUBDIRS = clapack
COMPILE_FIRST = clapack
noinst_LTLIBRARIES = libsharpnesseditor.la
METASOURCES = AUTO
INCLUDES = -I$(top_srcdir)/src/utilities/imageeditor/editor \
-I$(top_srcdir)/src/utilities/imageeditor/canvas \
-I$(top_srcdir)/src/libs/histogram \
-I$(top_srcdir)/src/libs/levels \
-I$(top_srcdir)/src/libs/curves \
-I$(top_srcdir)/src/libs/whitebalance \
-I$(top_srcdir)/src/libs/widgets/common \
-I$(top_srcdir)/src/libs/widgets/iccprofiles \
-I$(top_srcdir)/src/libs/widgets/imageplugins \
-I$(top_srcdir)/src/libs/dialogs \
-I$(top_srcdir)/src/libs/dimg \
-I$(top_srcdir)/src/libs/dmetadata \
-I$(top_srcdir)/src/libs/dimg/filters \
-I$(top_srcdir)/src/digikam \
-I$(top_srcdir)/src/imageplugins/coreplugin/sharpnesseditor/clapack \
$(LIBKDCRAW_CFLAGS) \
$(all_includes)
libsharpnesseditor_la_LIBADD = $(top_builddir)/src/imageplugins/coreplugin/sharpnesseditor/clapack/liblapack.la
libsharpnesseditor_la_SOURCES = sharpentool.cpp unsharp.cpp matrix.cpp refocus.cpp
libsharpnesseditor_la_LDFLAGS = $(all_libraries)
noinst_HEADERS = sharpentool.h unsharp.h matrix.h refocus.h
|