-
Notifications
You must be signed in to change notification settings - Fork 7
/
Makefile
693 lines (575 loc) · 24.4 KB
/
Makefile
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
#############################################################################
# Makefile for building: sim-home
# Generated by qmake (2.01a) (Qt 4.8.6) on: Sun Oct 5 14:13:38 2014
# Project: sim-home.pro
# Template: app
# Command: /usr/lib/x86_64-linux-gnu/qt4/bin/qmake -o Makefile sim-home.pro
#############################################################################
####### Compiler, tools and options
CC = gcc
CXX = g++
DEFINES = -DQT_NO_DEBUG -DQT_XML_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED
CFLAGS = -m64 -pipe -O2 -Wall -W -D_REENTRANT $(DEFINES)
CXXFLAGS = -m64 -pipe -std=c++0x -O2 -Wall -W -D_REENTRANT $(DEFINES)
INCPATH = -I/usr/share/qt4/mkspecs/linux-g++-64 -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtXml -I/usr/include/qt4 -I. -Iwidgets -Imodel -Iplanning -I../LAPKT-public/include -I../LAPKT-public/interfaces/agnostic -I.
LINK = g++
LFLAGS = -m64 -Wl,-O1
LIBS = $(SUBLIBS) -L/usr/lib/x86_64-linux-gnu -L./lapkt-lib -llapkt -lQtXml -lQtGui -lQtCore -lpthread
AR = ar cqs
RANLIB =
QMAKE = /usr/lib/x86_64-linux-gnu/qt4/bin/qmake
TAR = tar -cf
COMPRESS = gzip -9f
COPY = cp -f
SED = sed
COPY_FILE = $(COPY)
COPY_DIR = $(COPY) -r
STRIP = strip
INSTALL_FILE = install -m 644 -p
INSTALL_DIR = $(COPY_DIR)
INSTALL_PROGRAM = install -m 755 -p
DEL_FILE = rm -f
SYMLINK = ln -f -s
DEL_DIR = rmdir
MOVE = mv -f
CHK_DIR_EXISTS= test -d
MKDIR = mkdir -p
####### Output directory
OBJECTS_DIR = ./
####### Files
SOURCES = main.cxx \
model/SimHomeConfig.cxx \
model/SimHome.cxx \
widgets/AppWindow.cxx \
model/Home.cxx \
model/Room.cxx \
widgets/HomeRenderer.cxx \
widgets/RoomView.cxx \
widgets/GraphicsFactory.cxx \
model/WalkTo.cxx \
widgets/GoalSetView.cxx \
planning/Observer.cxx \
planning/Goal.cxx \
widgets/GoalView.cxx \
widgets/NewGoalDialog.cxx \
planning/GoalRecognizer.cxx \
model/OpenDoor.cxx \
model/CloseDoor.cxx \
model/Door.cxx \
model/Agent.cxx \
model/ItemManager.cxx \
model/Item.cxx \
model/Drop.cxx \
model/PickUp.cxx \
model/StageProp.cxx \
model/StagePropAction.cxx \
model/TurnOn.cxx \
model/TurnOff.cxx \
model/LieDown.cxx \
model/GetOff.cxx \
model/SitDown.cxx \
model/GetUp.cxx \
widgets/ObservationsView.cxx \
planning/PlanningTask.cxx moc_SimHomeConfig.cpp \
moc_SimHome.cpp \
moc_AppWindow.cpp \
moc_Home.cpp \
moc_Room.cpp \
moc_HomeRenderer.cpp \
moc_RoomView.cpp \
moc_WalkTo.cpp \
moc_GoalSetView.cpp \
moc_Observer.cpp \
moc_Goal.cpp \
moc_GoalView.cpp \
moc_NewGoalDialog.cpp \
moc_GoalRecognizer.cpp \
moc_OpenDoor.cpp \
moc_CloseDoor.cpp \
moc_Door.cpp \
moc_Agent.cpp \
moc_Item.cpp \
moc_Drop.cpp \
moc_PickUp.cpp \
moc_StageProp.cpp \
moc_StagePropAction.cpp \
moc_ObservationsView.cpp \
moc_PlanningTask.cpp
OBJECTS = main.o \
SimHomeConfig.o \
SimHome.o \
AppWindow.o \
Home.o \
Room.o \
HomeRenderer.o \
RoomView.o \
GraphicsFactory.o \
WalkTo.o \
GoalSetView.o \
Observer.o \
Goal.o \
GoalView.o \
NewGoalDialog.o \
GoalRecognizer.o \
OpenDoor.o \
CloseDoor.o \
Door.o \
Agent.o \
ItemManager.o \
Item.o \
Drop.o \
PickUp.o \
StageProp.o \
StagePropAction.o \
TurnOn.o \
TurnOff.o \
LieDown.o \
GetOff.o \
SitDown.o \
GetUp.o \
ObservationsView.o \
PlanningTask.o \
moc_SimHomeConfig.o \
moc_SimHome.o \
moc_AppWindow.o \
moc_Home.o \
moc_Room.o \
moc_HomeRenderer.o \
moc_RoomView.o \
moc_WalkTo.o \
moc_GoalSetView.o \
moc_Observer.o \
moc_Goal.o \
moc_GoalView.o \
moc_NewGoalDialog.o \
moc_GoalRecognizer.o \
moc_OpenDoor.o \
moc_CloseDoor.o \
moc_Door.o \
moc_Agent.o \
moc_Item.o \
moc_Drop.o \
moc_PickUp.o \
moc_StageProp.o \
moc_StagePropAction.o \
moc_ObservationsView.o \
moc_PlanningTask.o
DIST = /usr/share/qt4/mkspecs/common/unix.conf \
/usr/share/qt4/mkspecs/common/linux.conf \
/usr/share/qt4/mkspecs/common/gcc-base.conf \
/usr/share/qt4/mkspecs/common/gcc-base-unix.conf \
/usr/share/qt4/mkspecs/common/g++-base.conf \
/usr/share/qt4/mkspecs/common/g++-unix.conf \
/usr/share/qt4/mkspecs/qconfig.pri \
/usr/share/qt4/mkspecs/features/qt_functions.prf \
/usr/share/qt4/mkspecs/features/qt_config.prf \
/usr/share/qt4/mkspecs/features/exclusive_builds.prf \
/usr/share/qt4/mkspecs/features/default_pre.prf \
/usr/share/qt4/mkspecs/features/release.prf \
/usr/share/qt4/mkspecs/features/default_post.prf \
/usr/share/qt4/mkspecs/features/shared.prf \
/usr/share/qt4/mkspecs/features/unix/gdb_dwarf_index.prf \
/usr/share/qt4/mkspecs/features/warn_on.prf \
/usr/share/qt4/mkspecs/features/qt.prf \
/usr/share/qt4/mkspecs/features/unix/thread.prf \
/usr/share/qt4/mkspecs/features/moc.prf \
/usr/share/qt4/mkspecs/features/resources.prf \
/usr/share/qt4/mkspecs/features/uic.prf \
/usr/share/qt4/mkspecs/features/yacc.prf \
/usr/share/qt4/mkspecs/features/lex.prf \
/usr/share/qt4/mkspecs/features/include_source_dir.prf \
sim-home.pro
QMAKE_TARGET = sim-home
DESTDIR =
TARGET = sim-home
first: all
####### Implicit rules
.SUFFIXES: .o .c .cpp .cc .cxx .C
.cpp.o:
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o "$@" "$<"
.cc.o:
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o "$@" "$<"
.cxx.o:
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o "$@" "$<"
.C.o:
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o "$@" "$<"
.c.o:
$(CC) -c $(CFLAGS) $(INCPATH) -o "$@" "$<"
####### Build rules
all: Makefile $(TARGET)
$(TARGET): $(OBJECTS)
$(LINK) $(LFLAGS) -o $(TARGET) $(OBJECTS) $(OBJCOMP) $(LIBS)
Makefile: sim-home.pro /usr/share/qt4/mkspecs/linux-g++-64/qmake.conf /usr/share/qt4/mkspecs/common/unix.conf \
/usr/share/qt4/mkspecs/common/linux.conf \
/usr/share/qt4/mkspecs/common/gcc-base.conf \
/usr/share/qt4/mkspecs/common/gcc-base-unix.conf \
/usr/share/qt4/mkspecs/common/g++-base.conf \
/usr/share/qt4/mkspecs/common/g++-unix.conf \
/usr/share/qt4/mkspecs/qconfig.pri \
/usr/share/qt4/mkspecs/features/qt_functions.prf \
/usr/share/qt4/mkspecs/features/qt_config.prf \
/usr/share/qt4/mkspecs/features/exclusive_builds.prf \
/usr/share/qt4/mkspecs/features/default_pre.prf \
/usr/share/qt4/mkspecs/features/release.prf \
/usr/share/qt4/mkspecs/features/default_post.prf \
/usr/share/qt4/mkspecs/features/shared.prf \
/usr/share/qt4/mkspecs/features/unix/gdb_dwarf_index.prf \
/usr/share/qt4/mkspecs/features/warn_on.prf \
/usr/share/qt4/mkspecs/features/qt.prf \
/usr/share/qt4/mkspecs/features/unix/thread.prf \
/usr/share/qt4/mkspecs/features/moc.prf \
/usr/share/qt4/mkspecs/features/resources.prf \
/usr/share/qt4/mkspecs/features/uic.prf \
/usr/share/qt4/mkspecs/features/yacc.prf \
/usr/share/qt4/mkspecs/features/lex.prf \
/usr/share/qt4/mkspecs/features/include_source_dir.prf \
/usr/lib/x86_64-linux-gnu/libQtXml.prl \
/usr/lib/x86_64-linux-gnu/libQtGui.prl \
/usr/lib/x86_64-linux-gnu/libQtCore.prl
$(QMAKE) -o Makefile sim-home.pro
/usr/share/qt4/mkspecs/common/unix.conf:
/usr/share/qt4/mkspecs/common/linux.conf:
/usr/share/qt4/mkspecs/common/gcc-base.conf:
/usr/share/qt4/mkspecs/common/gcc-base-unix.conf:
/usr/share/qt4/mkspecs/common/g++-base.conf:
/usr/share/qt4/mkspecs/common/g++-unix.conf:
/usr/share/qt4/mkspecs/qconfig.pri:
/usr/share/qt4/mkspecs/features/qt_functions.prf:
/usr/share/qt4/mkspecs/features/qt_config.prf:
/usr/share/qt4/mkspecs/features/exclusive_builds.prf:
/usr/share/qt4/mkspecs/features/default_pre.prf:
/usr/share/qt4/mkspecs/features/release.prf:
/usr/share/qt4/mkspecs/features/default_post.prf:
/usr/share/qt4/mkspecs/features/shared.prf:
/usr/share/qt4/mkspecs/features/unix/gdb_dwarf_index.prf:
/usr/share/qt4/mkspecs/features/warn_on.prf:
/usr/share/qt4/mkspecs/features/qt.prf:
/usr/share/qt4/mkspecs/features/unix/thread.prf:
/usr/share/qt4/mkspecs/features/moc.prf:
/usr/share/qt4/mkspecs/features/resources.prf:
/usr/share/qt4/mkspecs/features/uic.prf:
/usr/share/qt4/mkspecs/features/yacc.prf:
/usr/share/qt4/mkspecs/features/lex.prf:
/usr/share/qt4/mkspecs/features/include_source_dir.prf:
/usr/lib/x86_64-linux-gnu/libQtXml.prl:
/usr/lib/x86_64-linux-gnu/libQtGui.prl:
/usr/lib/x86_64-linux-gnu/libQtCore.prl:
qmake: FORCE
@$(QMAKE) -o Makefile sim-home.pro
dist:
@$(CHK_DIR_EXISTS) .tmp/sim-home1.0.0 || $(MKDIR) .tmp/sim-home1.0.0
$(COPY_FILE) --parents $(SOURCES) $(DIST) .tmp/sim-home1.0.0/ && $(COPY_FILE) --parents model/SimHomeConfig.hxx model/SimHome.hxx widgets/AppWindow.hxx model/Home.hxx model/Room.hxx widgets/HomeRenderer.hxx widgets/RoomView.hxx widgets/GraphicsFactory.hxx model/WalkTo.hxx widgets/GoalSetView.hxx planning/Observer.hxx planning/Goal.hxx widgets/GoalView.hxx widgets/NewGoalDialog.hxx planning/GoalRecognizer.hxx model/OpenDoor.hxx model/CloseDoor.hxx model/Door.hxx model/Agent.hxx model/ItemManager.hxx model/Item.hxx model/Drop.hxx model/PickUp.hxx model/StageProp.hxx model/StagePropAction.hxx model/TurnOn.hxx model/TurnOff.hxx model/LieDown.hxx model/GetOff.hxx model/SitDown.hxx model/GetUp.hxx widgets/ObservationsView.hxx planning/PlanningTask.hxx .tmp/sim-home1.0.0/ && $(COPY_FILE) --parents main.cxx model/SimHomeConfig.cxx model/SimHome.cxx widgets/AppWindow.cxx model/Home.cxx model/Room.cxx widgets/HomeRenderer.cxx widgets/RoomView.cxx widgets/GraphicsFactory.cxx model/WalkTo.cxx widgets/GoalSetView.cxx planning/Observer.cxx planning/Goal.cxx widgets/GoalView.cxx widgets/NewGoalDialog.cxx planning/GoalRecognizer.cxx model/OpenDoor.cxx model/CloseDoor.cxx model/Door.cxx model/Agent.cxx model/ItemManager.cxx model/Item.cxx model/Drop.cxx model/PickUp.cxx model/StageProp.cxx model/StagePropAction.cxx model/TurnOn.cxx model/TurnOff.cxx model/LieDown.cxx model/GetOff.cxx model/SitDown.cxx model/GetUp.cxx widgets/ObservationsView.cxx planning/PlanningTask.cxx .tmp/sim-home1.0.0/ && (cd `dirname .tmp/sim-home1.0.0` && $(TAR) sim-home1.0.0.tar sim-home1.0.0 && $(COMPRESS) sim-home1.0.0.tar) && $(MOVE) `dirname .tmp/sim-home1.0.0`/sim-home1.0.0.tar.gz . && $(DEL_FILE) -r .tmp/sim-home1.0.0
clean:compiler_clean
-$(DEL_FILE) $(OBJECTS)
-$(DEL_FILE) *~ core *.core
####### Sub-libraries
distclean: clean
-$(DEL_FILE) $(TARGET)
-$(DEL_FILE) Makefile
check: first
mocclean: compiler_moc_header_clean compiler_moc_source_clean
mocables: compiler_moc_header_make_all compiler_moc_source_make_all
compiler_moc_header_make_all: moc_SimHomeConfig.cpp moc_SimHome.cpp moc_AppWindow.cpp moc_Home.cpp moc_Room.cpp moc_HomeRenderer.cpp moc_RoomView.cpp moc_WalkTo.cpp moc_GoalSetView.cpp moc_Observer.cpp moc_Goal.cpp moc_GoalView.cpp moc_NewGoalDialog.cpp moc_GoalRecognizer.cpp moc_OpenDoor.cpp moc_CloseDoor.cpp moc_Door.cpp moc_Agent.cpp moc_Item.cpp moc_Drop.cpp moc_PickUp.cpp moc_StageProp.cpp moc_StagePropAction.cpp moc_ObservationsView.cpp moc_PlanningTask.cpp
compiler_moc_header_clean:
-$(DEL_FILE) moc_SimHomeConfig.cpp moc_SimHome.cpp moc_AppWindow.cpp moc_Home.cpp moc_Room.cpp moc_HomeRenderer.cpp moc_RoomView.cpp moc_WalkTo.cpp moc_GoalSetView.cpp moc_Observer.cpp moc_Goal.cpp moc_GoalView.cpp moc_NewGoalDialog.cpp moc_GoalRecognizer.cpp moc_OpenDoor.cpp moc_CloseDoor.cpp moc_Door.cpp moc_Agent.cpp moc_Item.cpp moc_Drop.cpp moc_PickUp.cpp moc_StageProp.cpp moc_StagePropAction.cpp moc_ObservationsView.cpp moc_PlanningTask.cpp
moc_SimHomeConfig.cpp: model/SimHomeConfig.hxx
/usr/lib/x86_64-linux-gnu/qt4/bin/moc $(DEFINES) $(INCPATH) model/SimHomeConfig.hxx -o moc_SimHomeConfig.cpp
moc_SimHome.cpp: model/SimHome.hxx
/usr/lib/x86_64-linux-gnu/qt4/bin/moc $(DEFINES) $(INCPATH) model/SimHome.hxx -o moc_SimHome.cpp
moc_AppWindow.cpp: widgets/AppWindow.hxx
/usr/lib/x86_64-linux-gnu/qt4/bin/moc $(DEFINES) $(INCPATH) widgets/AppWindow.hxx -o moc_AppWindow.cpp
moc_Home.cpp: model/Home.hxx
/usr/lib/x86_64-linux-gnu/qt4/bin/moc $(DEFINES) $(INCPATH) model/Home.hxx -o moc_Home.cpp
moc_Room.cpp: model/Room.hxx
/usr/lib/x86_64-linux-gnu/qt4/bin/moc $(DEFINES) $(INCPATH) model/Room.hxx -o moc_Room.cpp
moc_HomeRenderer.cpp: widgets/HomeRenderer.hxx
/usr/lib/x86_64-linux-gnu/qt4/bin/moc $(DEFINES) $(INCPATH) widgets/HomeRenderer.hxx -o moc_HomeRenderer.cpp
moc_RoomView.cpp: widgets/RoomView.hxx
/usr/lib/x86_64-linux-gnu/qt4/bin/moc $(DEFINES) $(INCPATH) widgets/RoomView.hxx -o moc_RoomView.cpp
moc_WalkTo.cpp: model/WalkTo.hxx
/usr/lib/x86_64-linux-gnu/qt4/bin/moc $(DEFINES) $(INCPATH) model/WalkTo.hxx -o moc_WalkTo.cpp
moc_GoalSetView.cpp: widgets/GoalView.hxx \
widgets/ObservationsView.hxx \
widgets/GoalSetView.hxx
/usr/lib/x86_64-linux-gnu/qt4/bin/moc $(DEFINES) $(INCPATH) widgets/GoalSetView.hxx -o moc_GoalSetView.cpp
moc_Observer.cpp: planning/Goal.hxx \
widgets/GoalView.hxx \
planning/Observer.hxx
/usr/lib/x86_64-linux-gnu/qt4/bin/moc $(DEFINES) $(INCPATH) planning/Observer.hxx -o moc_Observer.cpp
moc_Goal.cpp: planning/Goal.hxx
/usr/lib/x86_64-linux-gnu/qt4/bin/moc $(DEFINES) $(INCPATH) planning/Goal.hxx -o moc_Goal.cpp
moc_GoalView.cpp: widgets/GoalView.hxx
/usr/lib/x86_64-linux-gnu/qt4/bin/moc $(DEFINES) $(INCPATH) widgets/GoalView.hxx -o moc_GoalView.cpp
moc_NewGoalDialog.cpp: widgets/NewGoalDialog.hxx
/usr/lib/x86_64-linux-gnu/qt4/bin/moc $(DEFINES) $(INCPATH) widgets/NewGoalDialog.hxx -o moc_NewGoalDialog.cpp
moc_GoalRecognizer.cpp: planning/Goal.hxx \
planning/PlanningTask.hxx \
planning/GoalRecognizer.hxx
/usr/lib/x86_64-linux-gnu/qt4/bin/moc $(DEFINES) $(INCPATH) planning/GoalRecognizer.hxx -o moc_GoalRecognizer.cpp
moc_OpenDoor.cpp: model/OpenDoor.hxx
/usr/lib/x86_64-linux-gnu/qt4/bin/moc $(DEFINES) $(INCPATH) model/OpenDoor.hxx -o moc_OpenDoor.cpp
moc_CloseDoor.cpp: model/CloseDoor.hxx
/usr/lib/x86_64-linux-gnu/qt4/bin/moc $(DEFINES) $(INCPATH) model/CloseDoor.hxx -o moc_CloseDoor.cpp
moc_Door.cpp: model/Door.hxx
/usr/lib/x86_64-linux-gnu/qt4/bin/moc $(DEFINES) $(INCPATH) model/Door.hxx -o moc_Door.cpp
moc_Agent.cpp: model/Agent.hxx
/usr/lib/x86_64-linux-gnu/qt4/bin/moc $(DEFINES) $(INCPATH) model/Agent.hxx -o moc_Agent.cpp
moc_Item.cpp: model/Item.hxx
/usr/lib/x86_64-linux-gnu/qt4/bin/moc $(DEFINES) $(INCPATH) model/Item.hxx -o moc_Item.cpp
moc_Drop.cpp: model/Drop.hxx
/usr/lib/x86_64-linux-gnu/qt4/bin/moc $(DEFINES) $(INCPATH) model/Drop.hxx -o moc_Drop.cpp
moc_PickUp.cpp: model/PickUp.hxx
/usr/lib/x86_64-linux-gnu/qt4/bin/moc $(DEFINES) $(INCPATH) model/PickUp.hxx -o moc_PickUp.cpp
moc_StageProp.cpp: model/StageProp.hxx
/usr/lib/x86_64-linux-gnu/qt4/bin/moc $(DEFINES) $(INCPATH) model/StageProp.hxx -o moc_StageProp.cpp
moc_StagePropAction.cpp: model/StagePropAction.hxx
/usr/lib/x86_64-linux-gnu/qt4/bin/moc $(DEFINES) $(INCPATH) model/StagePropAction.hxx -o moc_StagePropAction.cpp
moc_ObservationsView.cpp: widgets/ObservationsView.hxx
/usr/lib/x86_64-linux-gnu/qt4/bin/moc $(DEFINES) $(INCPATH) widgets/ObservationsView.hxx -o moc_ObservationsView.cpp
moc_PlanningTask.cpp: planning/PlanningTask.hxx
/usr/lib/x86_64-linux-gnu/qt4/bin/moc $(DEFINES) $(INCPATH) planning/PlanningTask.hxx -o moc_PlanningTask.cpp
compiler_rcc_make_all:
compiler_rcc_clean:
compiler_image_collection_make_all: qmake_image_collection.cpp
compiler_image_collection_clean:
-$(DEL_FILE) qmake_image_collection.cpp
compiler_moc_source_make_all:
compiler_moc_source_clean:
compiler_uic_make_all:
compiler_uic_clean:
compiler_yacc_decl_make_all:
compiler_yacc_decl_clean:
compiler_yacc_impl_make_all:
compiler_yacc_impl_clean:
compiler_lex_make_all:
compiler_lex_clean:
compiler_clean: compiler_moc_header_clean
####### Compile
main.o: main.cxx model/SimHomeConfig.hxx \
model/SimHome.hxx \
widgets/AppWindow.hxx \
planning/Observer.hxx \
planning/Goal.hxx \
widgets/GoalView.hxx \
widgets/GoalSetView.hxx \
widgets/ObservationsView.hxx
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o main.o main.cxx
SimHomeConfig.o: model/SimHomeConfig.cxx model/SimHomeConfig.hxx
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o SimHomeConfig.o model/SimHomeConfig.cxx
SimHome.o: model/SimHome.cxx model/SimHome.hxx \
model/Home.hxx \
widgets/RoomView.hxx \
model/Room.hxx \
model/Door.hxx \
model/Agent.hxx \
model/StageProp.hxx \
planning/Observer.hxx \
planning/Goal.hxx \
widgets/GoalView.hxx
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o SimHome.o model/SimHome.cxx
AppWindow.o: widgets/AppWindow.cxx widgets/AppWindow.hxx \
widgets/HomeRenderer.hxx \
widgets/RoomView.hxx \
widgets/GoalSetView.hxx \
widgets/GoalView.hxx \
widgets/ObservationsView.hxx
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o AppWindow.o widgets/AppWindow.cxx
Home.o: model/Home.cxx model/Home.hxx \
model/Room.hxx \
model/Door.hxx \
model/ItemManager.hxx \
model/Item.hxx \
model/StageProp.hxx
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o Home.o model/Home.cxx
Room.o: model/Room.cxx model/Room.hxx \
model/WalkTo.hxx \
model/PickUp.hxx \
model/Drop.hxx \
planning/Observer.hxx \
planning/Goal.hxx \
widgets/GoalView.hxx \
model/Door.hxx \
model/OpenDoor.hxx \
model/CloseDoor.hxx \
model/Agent.hxx \
model/Item.hxx \
model/ItemManager.hxx \
model/StageProp.hxx \
model/StagePropAction.hxx
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o Room.o model/Room.cxx
HomeRenderer.o: widgets/HomeRenderer.cxx widgets/HomeRenderer.hxx
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o HomeRenderer.o widgets/HomeRenderer.cxx
RoomView.o: widgets/RoomView.cxx widgets/RoomView.hxx \
widgets/GraphicsFactory.hxx \
model/Room.hxx
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o RoomView.o widgets/RoomView.cxx
GraphicsFactory.o: widgets/GraphicsFactory.cxx widgets/GraphicsFactory.hxx
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o GraphicsFactory.o widgets/GraphicsFactory.cxx
WalkTo.o: model/WalkTo.cxx model/WalkTo.hxx \
model/Room.hxx \
model/Door.hxx \
model/Agent.hxx
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o WalkTo.o model/WalkTo.cxx
GoalSetView.o: widgets/GoalSetView.cxx widgets/GoalSetView.hxx \
widgets/GoalView.hxx \
widgets/ObservationsView.hxx \
widgets/NewGoalDialog.hxx
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o GoalSetView.o widgets/GoalSetView.cxx
Observer.o: planning/Observer.cxx planning/Observer.hxx \
planning/Goal.hxx \
widgets/GoalView.hxx \
planning/GoalRecognizer.hxx \
planning/PlanningTask.hxx
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o Observer.o planning/Observer.cxx
Goal.o: planning/Goal.cxx planning/Goal.hxx
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o Goal.o planning/Goal.cxx
GoalView.o: widgets/GoalView.cxx widgets/GoalView.hxx
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o GoalView.o widgets/GoalView.cxx
NewGoalDialog.o: widgets/NewGoalDialog.cxx widgets/NewGoalDialog.hxx
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o NewGoalDialog.o widgets/NewGoalDialog.cxx
GoalRecognizer.o: planning/GoalRecognizer.cxx planning/GoalRecognizer.hxx \
planning/Goal.hxx \
planning/PlanningTask.hxx
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o GoalRecognizer.o planning/GoalRecognizer.cxx
OpenDoor.o: model/OpenDoor.cxx model/OpenDoor.hxx \
model/Door.hxx \
model/Room.hxx
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o OpenDoor.o model/OpenDoor.cxx
CloseDoor.o: model/CloseDoor.cxx model/CloseDoor.hxx \
model/Door.hxx \
model/Room.hxx
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o CloseDoor.o model/CloseDoor.cxx
Door.o: model/Door.cxx model/Door.hxx \
planning/Observer.hxx \
planning/Goal.hxx \
widgets/GoalView.hxx \
model/Room.hxx \
model/OpenDoor.hxx \
model/CloseDoor.hxx
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o Door.o model/Door.cxx
Agent.o: model/Agent.cxx model/Agent.hxx \
model/Item.hxx \
model/ItemManager.hxx
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o Agent.o model/Agent.cxx
ItemManager.o: model/ItemManager.cxx model/ItemManager.hxx \
model/Item.hxx
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ItemManager.o model/ItemManager.cxx
Item.o: model/Item.cxx model/Item.hxx
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o Item.o model/Item.cxx
Drop.o: model/Drop.cxx model/Drop.hxx \
model/Room.hxx \
model/Agent.hxx \
model/Item.hxx
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o Drop.o model/Drop.cxx
PickUp.o: model/PickUp.cxx model/PickUp.hxx \
model/Room.hxx \
model/Agent.hxx \
model/Item.hxx
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o PickUp.o model/PickUp.cxx
StageProp.o: model/StageProp.cxx model/StageProp.hxx \
model/StagePropAction.hxx \
model/Room.hxx \
model/Agent.hxx \
planning/Observer.hxx \
planning/Goal.hxx \
widgets/GoalView.hxx
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o StageProp.o model/StageProp.cxx
StagePropAction.o: model/StagePropAction.cxx model/StagePropAction.hxx \
model/Agent.hxx \
model/Room.hxx \
model/StageProp.hxx
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o StagePropAction.o model/StagePropAction.cxx
TurnOn.o: model/TurnOn.cxx model/TurnOn.hxx \
model/StagePropAction.hxx \
model/Agent.hxx \
model/Room.hxx \
model/StageProp.hxx
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o TurnOn.o model/TurnOn.cxx
TurnOff.o: model/TurnOff.cxx model/TurnOff.hxx \
model/StagePropAction.hxx \
model/Agent.hxx \
model/Room.hxx \
model/StageProp.hxx
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o TurnOff.o model/TurnOff.cxx
LieDown.o: model/LieDown.cxx model/LieDown.hxx \
model/StagePropAction.hxx \
model/Agent.hxx \
model/Room.hxx \
model/StageProp.hxx
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o LieDown.o model/LieDown.cxx
GetOff.o: model/GetOff.cxx model/GetOff.hxx \
model/StagePropAction.hxx \
model/Agent.hxx \
model/Room.hxx \
model/StageProp.hxx
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o GetOff.o model/GetOff.cxx
SitDown.o: model/SitDown.cxx model/SitDown.hxx \
model/StagePropAction.hxx \
model/Agent.hxx \
model/Room.hxx \
model/StageProp.hxx
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o SitDown.o model/SitDown.cxx
GetUp.o: model/GetUp.cxx model/GetUp.hxx \
model/StagePropAction.hxx \
model/Agent.hxx \
model/Room.hxx \
model/StageProp.hxx
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o GetUp.o model/GetUp.cxx
ObservationsView.o: widgets/ObservationsView.cxx widgets/ObservationsView.hxx
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ObservationsView.o widgets/ObservationsView.cxx
PlanningTask.o: planning/PlanningTask.cxx planning/PlanningTask.hxx
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o PlanningTask.o planning/PlanningTask.cxx
moc_SimHomeConfig.o: moc_SimHomeConfig.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o moc_SimHomeConfig.o moc_SimHomeConfig.cpp
moc_SimHome.o: moc_SimHome.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o moc_SimHome.o moc_SimHome.cpp
moc_AppWindow.o: moc_AppWindow.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o moc_AppWindow.o moc_AppWindow.cpp
moc_Home.o: moc_Home.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o moc_Home.o moc_Home.cpp
moc_Room.o: moc_Room.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o moc_Room.o moc_Room.cpp
moc_HomeRenderer.o: moc_HomeRenderer.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o moc_HomeRenderer.o moc_HomeRenderer.cpp
moc_RoomView.o: moc_RoomView.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o moc_RoomView.o moc_RoomView.cpp
moc_WalkTo.o: moc_WalkTo.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o moc_WalkTo.o moc_WalkTo.cpp
moc_GoalSetView.o: moc_GoalSetView.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o moc_GoalSetView.o moc_GoalSetView.cpp
moc_Observer.o: moc_Observer.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o moc_Observer.o moc_Observer.cpp
moc_Goal.o: moc_Goal.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o moc_Goal.o moc_Goal.cpp
moc_GoalView.o: moc_GoalView.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o moc_GoalView.o moc_GoalView.cpp
moc_NewGoalDialog.o: moc_NewGoalDialog.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o moc_NewGoalDialog.o moc_NewGoalDialog.cpp
moc_GoalRecognizer.o: moc_GoalRecognizer.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o moc_GoalRecognizer.o moc_GoalRecognizer.cpp
moc_OpenDoor.o: moc_OpenDoor.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o moc_OpenDoor.o moc_OpenDoor.cpp
moc_CloseDoor.o: moc_CloseDoor.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o moc_CloseDoor.o moc_CloseDoor.cpp
moc_Door.o: moc_Door.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o moc_Door.o moc_Door.cpp
moc_Agent.o: moc_Agent.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o moc_Agent.o moc_Agent.cpp
moc_Item.o: moc_Item.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o moc_Item.o moc_Item.cpp
moc_Drop.o: moc_Drop.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o moc_Drop.o moc_Drop.cpp
moc_PickUp.o: moc_PickUp.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o moc_PickUp.o moc_PickUp.cpp
moc_StageProp.o: moc_StageProp.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o moc_StageProp.o moc_StageProp.cpp
moc_StagePropAction.o: moc_StagePropAction.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o moc_StagePropAction.o moc_StagePropAction.cpp
moc_ObservationsView.o: moc_ObservationsView.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o moc_ObservationsView.o moc_ObservationsView.cpp
moc_PlanningTask.o: moc_PlanningTask.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o moc_PlanningTask.o moc_PlanningTask.cpp
####### Install
install: FORCE
uninstall: FORCE
FORCE: