blob: a45eab9d8703e00c4b1971021aad7585f0d99b9e (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
KDE_ICON = AUTO
noinst_LTLIBRARIES = libfilesharesamba.la
kde_module_LTLIBRARIES = kcm_kcmsambaconf.la
AM_CPPFLAGS = $(all_includes)
METASOURCES=AUTO
kcm_kcmsambaconf_la_SOURCES = \
kcminterface.ui \
kcmprinterdlg.ui \
printerdlgimpl.cpp \
kcmsambaconf.cpp \
joindomaindlg.ui
kcm_kcmsambaconf_la_COMPILE_FIRST = usertab.h share.h
kcm_kcmsambaconf_la_LIBADD = \
-ltdeprint \
libfilesharesamba.la
kcm_kcmsambaconf_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor
libfilesharesamba_la_SOURCES = \
sambafile.cpp \
share.ui \
sharedlgimpl.cpp \
sambashare.cpp \
socketoptionsdlg.ui \
common.cpp \
userselectdlg.ui \
groupselectdlg.ui \
usertab.ui \
usertabimpl.cpp \
filemodedlg.ui \
filemodedlgimpl.cpp \
smbpasswdfile.cpp \
passwd.cpp \
hiddenfileview.cpp \
dictmanager.cpp \
qmultichecklistitem.cpp \
smbconfconfigwidget.cpp \
linuxpermissionchecker.cpp \
expertuserdlg.ui
xdg_apps_DATA = kcmsambaconf.desktop
|