blob: 6d4a01c25417896bb5cef489acb96c7f88d76fe8 (
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
INCLUDES = $(all_includes)
METASOURCES = AUTO
kde_module_LTLIBRARIES = kpf_panelapplet.la kpfpropertiesdialog.la
kpf_panelapplet_la_SOURCES = \
Utils.cpp \
DirectoryLister.cpp \
ByteRange.cpp \
DirSelectWidget.cpp \
PortValidator.cpp \
Request.cpp \
Response.cpp \
Resource.cpp \
RootValidator.cpp \
Server.cpp \
ServerPrivate.cpp \
ServerSocket.cpp \
WebServer.cpp \
WebServer.skel \
WebServer.stub \
WebServerSocket.cpp \
WebServerManager.cpp \
WebServerManager.skel \
SingleServerConfigDialog.cpp \
System.cpp \
ConfigDialogPage.cpp \
ErrorMessageConfigDialog.cpp \
ActiveMonitor.cpp \
ActiveMonitorItem.cpp \
ActiveMonitorWindow.cpp \
BandwidthGraph.cpp \
ServerWizard.cpp \
AppletItem.cpp \
Applet.cpp \
Defaults.cpp \
Help.cpp
kpf_panelapplet_la_LDFLAGS = $(all_libraries) $(KDE_PLUGIN) -module $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor
kpf_panelapplet_la_LIBADD = $(LIB_TDEIO) -ltdednssd
kpfpropertiesdialog_la_SOURCES = \
PropertiesDialogPlugin.cpp \
StartingKPFDialog.cpp \
WebServer.stub \
WebServerManager.stub \
Defaults.cpp \
Help.cpp
kpfpropertiesdialog_la_LIBADD = $(LIB_TDEIO) -ltdednssd
kpfpropertiesdialog_la_LDFLAGS = $(all_libraries) $(KDE_PLUGIN) -module $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor
noinst_HEADERS = \
Utils.h \
Defaults.h \
DirectoryLister.h \
DirSelectWidget.h \
ByteRange.h \
PortValidator.h \
Request.h \
Response.h \
Resource.h \
RootValidator.h \
Server.h \
ServerPrivate.h \
ServerSocket.h \
WebServer.h \
WebServerSocket.h \
WebServerManager.h \
SingleServerConfigDialog.h \
ConfigDialogPage.h \
PropertiesDialogPlugin.h \
StartingKPFDialog.h \
ErrorMessageConfigDialog.h \
ActiveMonitor.h \
ActiveMonitorItem.h \
ActiveMonitorWindow.h \
BandwidthGraph.h \
ServerWizard.h \
AppletItem.h \
Applet.h \
Help.h
messages:
$(XGETTEXT) *.cpp -o $(podir)/kpf.pot
|