blob: 7fc35f4811f03a46ca77388a6e5459d26ee1f32a (
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
##########################################################################
# Makefile.am #
# -------------------------------------------------------------------- #
# Makefile.am for KCron #
# -------------------------------------------------------------------- #
# Copyright (C) 1999, Gary Meyer <gary@meyer.net> #
# -------------------------------------------------------------------- #
# This program is free software; you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
# the Free Software Foundation; either version 2 of the License, or #
# (at your option) any later version. #
##########################################################################
bin_PROGRAMS = kcron
kcron_SOURCES = \
cthost.cpp \
ctcron.cpp \
ctmonth.cpp \
ctdom.cpp \
ctdow.cpp \
cttask.cpp \
ctvariable.cpp \
kticon.cpp \
ktapp.cpp \
ktview.cpp \
ktlistitem.cpp \
ktlistcron.cpp \
ktlisttask.cpp \
ktlisttasks.cpp \
ktlistvar.cpp \
ktlistvars.cpp \
kttask.cpp \
ktvariable.cpp \
ktprint.cpp \
ktprintopt.cpp \
main.cpp
EXTRA_DIST = \
ctcron.cpp \
ctcron.h \
ctdom.cpp \
ctdom.h \
ctdow.cpp \
ctdow.h \
ctexception.h \
cthost.cpp \
cthost.h \
cthour.h \
cti18n.h \
ctminute.h \
ctmonth.cpp \
ctmonth.h \
cttask.cpp \
cttask.h \
ctunit.cpp \
ctunit.h \
ctvariable.cpp \
ctvariable.h \
ktapp.h \
ktapp.cpp \
kticon.h \
kticon.cpp \
kttask.h \
kttask.cpp \
ktvariable.h \
ktvariable.cpp \
ktview.cpp \
ktview.h \
ktlistitem.h \
ktlistitem.cpp \
ktlistcron.h \
ktlistcron.cpp \
ktlisttask.h \
ktlisttask.cpp \
ktlisttasks.h \
ktlisttasks.cpp \
ktlistvar.h \
ktlistvar.cpp \
ktlistvars.h \
ktlistvars.cpp \
ktprint.h \
ktprint.cpp \
ktprintopt.h \
ktprintopt.cpp \
main.cpp \
README \
AUTHORS \
COPYING \
ChangeLog \
TODO \
kcron.desktop \
kcron.lsm \
Makefile.am
INCLUDES= $(all_includes)
kcron_METASOURCES = AUTO
kcron_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -lktexteditor
messages: rc.cpp
$(XGETTEXT) *.cpp -o $(podir)/kcron.pot
kcron_LDADD = $(LIB_KFILE) -ltdeprint
xdg_apps_DATA = kcron.desktop
KDE_ICON = kcron
shellrcdir = $(kde_datadir)/kcron
shellrc_DATA = kcronui.rc
|