summaryrefslogtreecommitdiff
path: root/noncore/tools/remote/Makefile.in
Unidiff
Diffstat (limited to 'noncore/tools/remote/Makefile.in') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/tools/remote/Makefile.in325
1 files changed, 0 insertions, 325 deletions
diff --git a/noncore/tools/remote/Makefile.in b/noncore/tools/remote/Makefile.in
deleted file mode 100644
index 631c999..0000000
--- a/noncore/tools/remote/Makefile.in
+++ b/dev/null
@@ -1,325 +0,0 @@
1#############################################################################
2
3####### Compiler, tools and options
4
5 CXX =$(SYSCONF_CXX) $(QT_CXX_MT)
6 CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS)
7 CC =$(SYSCONF_CC) $(QT_C_MT)
8 CFLAGS =$(SYSCONF_CFLAGS)
9 INCPATH =-I$(OPIEDIR)/include
10 LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT)
11 LIBS =$(SUBLIBS) -lqpe -lopie $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP)
12 MOC =$(SYSCONF_MOC)
13 UIC =$(SYSCONF_UIC)
14
15####### Target
16
17DESTDIR = $(OPIEDIR)/bin/
18VER_MAJ = 1
19VER_MIN = 0
20VER_PATCH = 0
21 TARGET= remote
22TARGET1 = lib$(TARGET).so.$(VER_MAJ)
23
24####### Files
25
26 HEADERS =remotetab.h \
27 learntab.h \
28 configtab.h \
29 topgroup.h \
30 dvdgroup.h \
31 channelgroup.h \
32 vcrgroup.h \
33 buttondialog.h \
34 topgroupconf.h \
35 dvdgroupconf.h \
36 channelgroupconf.h \
37 vcrgroupconf.h \
38 mainview.h \
39 recorddialog.h \
40 helptab.h
41 SOURCES =remote.cpp \
42 remotetab.cpp \
43 learntab.cpp \
44 configtab.cpp \
45 topgroup.cpp \
46 dvdgroup.cpp \
47 channelgroup.cpp \
48 vcrgroup.cpp \
49 buttondialog.cpp \
50 topgroupconf.cpp \
51 dvdgroupconf.cpp \
52 channelgroupconf.cpp \
53 vcrgroupconf.cpp \
54 mainview.cpp \
55 recorddialog.cpp \
56 helptab.cpp
57 OBJECTS =remote.o \
58 remotetab.o \
59 learntab.o \
60 configtab.o \
61 topgroup.o \
62 dvdgroup.o \
63 channelgroup.o \
64 vcrgroup.o \
65 buttondialog.o \
66 topgroupconf.o \
67 dvdgroupconf.o \
68 channelgroupconf.o \
69 vcrgroupconf.o \
70 mainview.o \
71 recorddialog.o \
72 helptab.o
73INTERFACES =
74UICDECLS =
75UICIMPLS =
76 SRCMOC =moc_remotetab.cpp \
77 moc_learntab.cpp \
78 moc_configtab.cpp \
79 moc_buttondialog.cpp \
80 moc_mainview.cpp \
81 moc_recorddialog.cpp
82 OBJMOC =moc_remotetab.o \
83 moc_learntab.o \
84 moc_configtab.o \
85 moc_buttondialog.o \
86 moc_mainview.o \
87 moc_recorddialog.o
88
89
90####### Implicit rules
91
92.SUFFIXES: .cpp .cxx .cc .C .c
93
94.cpp.o:
95 $(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $<
96
97.cxx.o:
98 $(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $<
99
100.cc.o:
101 $(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $<
102
103.C.o:
104 $(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $<
105
106.c.o:
107 $(CC) -c $(CFLAGS) $(INCPATH) -o $@ $<
108
109####### Build rules
110
111
112all: $(DESTDIR)$(TARGET)
113
114$(DESTDIR)$(TARGET): $(UICDECLS) $(OBJECTS) $(OBJMOC) $(SUBLIBS)
115 $(SYSCONF_LINK) $(LFLAGS) -o $(DESTDIR)$(TARGET) $(OBJECTS) $(OBJMOC) $(LIBS)
116
117moc: $(SRCMOC)
118
119tmake:
120 tmake remote.pro
121
122clean:
123 -rm -f $(OBJECTS) $(OBJMOC) $(SRCMOC) $(UICIMPLS) $(UICDECLS)
124 -rm -f *~ core
125 -rm -f allmoc.cpp
126
127####### Extension Modules
128
129listpromodules:
130 @echo
131
132listallmodules:
133 @echo
134
135listaddonpromodules:
136 @echo
137
138listaddonentmodules:
139 @echo
140
141
142REQUIRES=
143
144####### Sub-libraries
145
146
147###### Combined headers
148
149
150
151####### Compile
152
153remote.o: remote.cpp \
154 $(OPIEDIR)/include/qpe/qpeapplication.h \
155 $(OPIEDIR)/include/qpe/resource.h \
156 $(OPIEDIR)/include/qpe/config.h \
157 mainview.h \
158 remotetab.h \
159 topgroup.h \
160 dvdgroup.h \
161 channelgroup.h \
162 vcrgroup.h \
163 learntab.h \
164 recorddialog.h \
165 $(OPIEDIR)/include/opie/oprocess.h \
166 configtab.h \
167 buttondialog.h \
168 channelgroupconf.h \
169 dvdgroupconf.h \
170 topgroupconf.h \
171 vcrgroupconf.h \
172 helptab.h
173
174remotetab.o: remotetab.cpp \
175 remotetab.h \
176 $(OPIEDIR)/include/qpe/config.h \
177 topgroup.h \
178 dvdgroup.h \
179 $(OPIEDIR)/include/qpe/resource.h \
180 channelgroup.h \
181 vcrgroup.h
182
183learntab.o: learntab.cpp \
184 learntab.h \
185 recorddialog.h \
186 $(OPIEDIR)/include/opie/oprocess.h
187
188configtab.o: configtab.cpp \
189 configtab.h \
190 $(OPIEDIR)/include/qpe/config.h \
191 buttondialog.h \
192 channelgroupconf.h \
193 dvdgroupconf.h \
194 topgroupconf.h \
195 vcrgroupconf.h
196
197topgroup.o: topgroup.cpp \
198 topgroup.h \
199 $(OPIEDIR)/include/qpe/config.h
200
201dvdgroup.o: dvdgroup.cpp \
202 dvdgroup.h \
203 $(OPIEDIR)/include/qpe/resource.h
204
205channelgroup.o: channelgroup.cpp \
206 channelgroup.h
207
208vcrgroup.o: vcrgroup.cpp \
209 vcrgroup.h \
210 $(OPIEDIR)/include/qpe/resource.h
211
212buttondialog.o: buttondialog.cpp \
213 buttondialog.h
214
215topgroupconf.o: topgroupconf.cpp \
216 topgroupconf.h \
217 $(OPIEDIR)/include/qpe/config.h
218
219dvdgroupconf.o: dvdgroupconf.cpp \
220 dvdgroupconf.h
221
222channelgroupconf.o: channelgroupconf.cpp \
223 channelgroupconf.h
224
225vcrgroupconf.o: vcrgroupconf.cpp \
226 vcrgroupconf.h
227
228mainview.o: mainview.cpp \
229 mainview.h \
230 $(OPIEDIR)/include/qpe/qpeapplication.h \
231 $(OPIEDIR)/include/qpe/resource.h \
232 $(OPIEDIR)/include/qpe/config.h \
233 remotetab.h \
234 topgroup.h \
235 dvdgroup.h \
236 channelgroup.h \
237 vcrgroup.h \
238 learntab.h \
239 recorddialog.h \
240 $(OPIEDIR)/include/opie/oprocess.h \
241 configtab.h \
242 buttondialog.h \
243 channelgroupconf.h \
244 dvdgroupconf.h \
245 topgroupconf.h \
246 vcrgroupconf.h \
247 helptab.h
248
249recorddialog.o: recorddialog.cpp \
250 recorddialog.h \
251 $(OPIEDIR)/include/opie/oprocess.h
252
253helptab.o: helptab.cpp \
254 helptab.h
255
256moc_remotetab.o: moc_remotetab.cpp \
257 remotetab.h \
258 $(OPIEDIR)/include/qpe/config.h \
259 topgroup.h \
260 dvdgroup.h \
261 $(OPIEDIR)/include/qpe/resource.h \
262 channelgroup.h \
263 vcrgroup.h
264
265moc_learntab.o: moc_learntab.cpp \
266 learntab.h \
267 recorddialog.h \
268 $(OPIEDIR)/include/opie/oprocess.h
269
270moc_configtab.o: moc_configtab.cpp \
271 configtab.h \
272 $(OPIEDIR)/include/qpe/config.h \
273 buttondialog.h \
274 channelgroupconf.h \
275 dvdgroupconf.h \
276 topgroupconf.h \
277 vcrgroupconf.h
278
279moc_buttondialog.o: moc_buttondialog.cpp \
280 buttondialog.h
281
282moc_mainview.o: moc_mainview.cpp \
283 mainview.h \
284 $(OPIEDIR)/include/qpe/qpeapplication.h \
285 $(OPIEDIR)/include/qpe/resource.h \
286 $(OPIEDIR)/include/qpe/config.h \
287 remotetab.h \
288 topgroup.h \
289 dvdgroup.h \
290 channelgroup.h \
291 vcrgroup.h \
292 learntab.h \
293 recorddialog.h \
294 $(OPIEDIR)/include/opie/oprocess.h \
295 configtab.h \
296 buttondialog.h \
297 channelgroupconf.h \
298 dvdgroupconf.h \
299 topgroupconf.h \
300 vcrgroupconf.h \
301 helptab.h
302
303moc_recorddialog.o: moc_recorddialog.cpp \
304 recorddialog.h \
305 $(OPIEDIR)/include/opie/oprocess.h
306
307moc_remotetab.cpp: remotetab.h
308 $(MOC) remotetab.h -o moc_remotetab.cpp
309
310moc_learntab.cpp: learntab.h
311 $(MOC) learntab.h -o moc_learntab.cpp
312
313moc_configtab.cpp: configtab.h
314 $(MOC) configtab.h -o moc_configtab.cpp
315
316moc_buttondialog.cpp: buttondialog.h
317 $(MOC) buttondialog.h -o moc_buttondialog.cpp
318
319moc_mainview.cpp: mainview.h
320 $(MOC) mainview.h -o moc_mainview.cpp
321
322moc_recorddialog.cpp: recorddialog.h
323 $(MOC) recorddialog.h -o moc_recorddialog.cpp
324
325