-
Notifications
You must be signed in to change notification settings - Fork 8
/
Makefile
543 lines (470 loc) · 19.3 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
#############################################################################
# Makefile for building: IGITBuildingReconstruction
# Generated by qmake (2.01a) (Qt 4.8.1) on: Tue Nov 25 23:41:32 2014
# Project: IGITBuildingReconstruction.pro
# Template: app
# Command: /usr/bin/qmake -spec /usr/share/qt4/mkspecs/linux-g++ CONFIG+=debug CONFIG+=declarative_debug -o Makefile IGITBuildingReconstruction.pro
#############################################################################
####### Compiler, tools and options
CC = gcc
CXX = g++
DEFINES = -DQT_WEBKIT -DQT_QT3SUPPORT_LIB -DQT3_SUPPORT -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED
CFLAGS = -pipe -g -Wall -W -D_REENTRANT $(DEFINES)
CXXFLAGS = -pipe -frounding-math -g -Wall -W -D_REENTRANT $(DEFINES)
INCPATH = -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/Qt3Support -I/usr/include/qt4 -I/usr/include/qt4/QtOpenGL -I/usr/include/qt4 -I/usr/include/qt3 -I/usr/include/qt4/QtXml -I. -I.
LINK = g++
LFLAGS =
LIBS = $(SUBLIBS) -L/usr/lib/x86_64-linux-gnu -L/usr/X11R6/lib64 -lQtOpenGL -lCGAL -lCGAL_Core -lQGLViewer -lGLEW -lglut -lGL -lGLU -lboost_system -lboost_thread -L/usr/local/lib/ -lopencv_core -lopencv_flann -lopencv_highgui -lopencv_imgproc -lopencv_legacy -lopencv_calib3d -L/usr/lib/x86_64-linux-gnu/ -lgmp -lmpfr -ljpeg -lQt3Support -lQtGui -lQtCore -lpthread
AR = ar cqs
RANLIB =
QMAKE = /usr/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.cpp \
unionFindGraph.cpp \
sw_regionGrowing.cpp \
sw_mainwindow.cpp \
sw_graph_vec.cpp \
sw_graph_str.cpp \
sw_glviewer.cpp \
sw_functions.cpp \
sw_floorplan.cpp \
sw_dataType.cpp \
sw_dataIO.cpp \
sw_cornerExtraction.cpp \
sw_codingEdit.cpp \
sw_cgal_mesh_processing.cpp \
sw_alpha_expansion.cpp \
maxflow.cpp \
graph.cpp \
sw_paintImageWidget.cpp \
gts_repetitveStructure.cpp \
gts_paintWidget.cpp \
gts_paintShape.cpp \
gts_minESingleV1.cpp moc_sw_mainwindow.cpp \
moc_sw_glviewer.cpp \
moc_sw_floorplan.cpp \
moc_sw_dataIO.cpp \
moc_sw_paintImageWidget.cpp \
moc_gts_repetitiveStructure.cpp \
moc_gts_paintWidget.cpp
OBJECTS = main.o \
unionFindGraph.o \
sw_regionGrowing.o \
sw_mainwindow.o \
sw_graph_vec.o \
sw_graph_str.o \
sw_glviewer.o \
sw_functions.o \
sw_floorplan.o \
sw_dataType.o \
sw_dataIO.o \
sw_cornerExtraction.o \
sw_codingEdit.o \
sw_cgal_mesh_processing.o \
sw_alpha_expansion.o \
maxflow.o \
graph.o \
sw_paintImageWidget.o \
gts_repetitveStructure.o \
gts_paintWidget.o \
gts_paintShape.o \
gts_minESingleV1.o \
moc_sw_mainwindow.o \
moc_sw_glviewer.o \
moc_sw_floorplan.o \
moc_sw_dataIO.o \
moc_sw_paintImageWidget.o \
moc_gts_repetitiveStructure.o \
moc_gts_paintWidget.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/modules/qt_webkit_version.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/debug.prf \
/usr/share/qt4/mkspecs/features/default_post.prf \
/usr/share/qt4/mkspecs/features/declarative_debug.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 \
IGITBuildingReconstruction.pro
QMAKE_TARGET = IGITBuildingReconstruction
DESTDIR =
TARGET = IGITBuildingReconstruction
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): ui_mainwindow.h ui_FloorPlan.h ui_gts_repetitiveStructure.h $(OBJECTS)
$(LINK) $(LFLAGS) -o $(TARGET) $(OBJECTS) $(OBJCOMP) $(LIBS)
{ test -n "$(DESTDIR)" && DESTDIR="$(DESTDIR)" || DESTDIR=.; } && test $$(gdb --version | sed -e 's,[^0-9]\+\([0-9]\)\.\([0-9]\).*,\1\2,;q') -gt 72 && gdb --nx --batch --quiet -ex 'set confirm off' -ex "save gdb-index $$DESTDIR" -ex quit '$(TARGET)' && test -f $(TARGET).gdb-index && objcopy --add-section '.gdb_index=$(TARGET).gdb-index' --set-section-flags '.gdb_index=readonly' '$(TARGET)' '$(TARGET)' && rm -f $(TARGET).gdb-index || true
Makefile: IGITBuildingReconstruction.pro /usr/share/qt4/mkspecs/linux-g++/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/modules/qt_webkit_version.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/debug.prf \
/usr/share/qt4/mkspecs/features/default_post.prf \
/usr/share/qt4/mkspecs/features/declarative_debug.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/libQtOpenGL.prl \
/usr/lib/x86_64-linux-gnu/libQtGui.prl \
/usr/lib/x86_64-linux-gnu/libQtCore.prl \
/usr/lib/x86_64-linux-gnu/libQt3Support.prl
$(QMAKE) -spec /usr/share/qt4/mkspecs/linux-g++ CONFIG+=debug CONFIG+=declarative_debug -o Makefile IGITBuildingReconstruction.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/modules/qt_webkit_version.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/debug.prf:
/usr/share/qt4/mkspecs/features/default_post.prf:
/usr/share/qt4/mkspecs/features/declarative_debug.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/libQtOpenGL.prl:
/usr/lib/x86_64-linux-gnu/libQtGui.prl:
/usr/lib/x86_64-linux-gnu/libQtCore.prl:
/usr/lib/x86_64-linux-gnu/libQt3Support.prl:
qmake: FORCE
@$(QMAKE) -spec /usr/share/qt4/mkspecs/linux-g++ CONFIG+=debug CONFIG+=declarative_debug -o Makefile IGITBuildingReconstruction.pro
dist:
@$(CHK_DIR_EXISTS) .tmp/IGITBuildingReconstruction1.0.0 || $(MKDIR) .tmp/IGITBuildingReconstruction1.0.0
$(COPY_FILE) --parents $(SOURCES) $(DIST) .tmp/IGITBuildingReconstruction1.0.0/ && $(COPY_FILE) --parents unionFindGraph.h sw_regionGrowing.h sw_mainwindow.h sw_graph_vec.h sw_graph_str.h sw_glviewer.h sw_functions.h sw_floorplan.h sw_dataType.h sw_dataIO.h sw_cornerExtraction.h sw_codingEdit.h sw_cgal_mesh_processing.h sw_alpha_expansion.h graph.h energy.h block.h sw_paintImageWidget.h gts_repetitiveStructure.h gts_paintWidget.h gts_paintShape.h gts_minESingleV1.h .tmp/IGITBuildingReconstruction1.0.0/ && $(COPY_FILE) --parents main.cpp unionFindGraph.cpp sw_regionGrowing.cpp sw_mainwindow.cpp sw_graph_vec.cpp sw_graph_str.cpp sw_glviewer.cpp sw_functions.cpp sw_floorplan.cpp sw_dataType.cpp sw_dataIO.cpp sw_cornerExtraction.cpp sw_codingEdit.cpp sw_cgal_mesh_processing.cpp sw_alpha_expansion.cpp maxflow.cpp graph.cpp sw_paintImageWidget.cpp gts_repetitveStructure.cpp gts_paintWidget.cpp gts_paintShape.cpp gts_minESingleV1.cpp .tmp/IGITBuildingReconstruction1.0.0/ && $(COPY_FILE) --parents mainwindow.ui FloorPlan.ui gts_repetitiveStructure.ui .tmp/IGITBuildingReconstruction1.0.0/ && (cd `dirname .tmp/IGITBuildingReconstruction1.0.0` && $(TAR) IGITBuildingReconstruction1.0.0.tar IGITBuildingReconstruction1.0.0 && $(COMPRESS) IGITBuildingReconstruction1.0.0.tar) && $(MOVE) `dirname .tmp/IGITBuildingReconstruction1.0.0`/IGITBuildingReconstruction1.0.0.tar.gz . && $(DEL_FILE) -r .tmp/IGITBuildingReconstruction1.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_sw_mainwindow.cpp moc_sw_glviewer.cpp moc_sw_floorplan.cpp moc_sw_dataIO.cpp moc_sw_paintImageWidget.cpp moc_gts_repetitiveStructure.cpp moc_gts_paintWidget.cpp
compiler_moc_header_clean:
-$(DEL_FILE) moc_sw_mainwindow.cpp moc_sw_glviewer.cpp moc_sw_floorplan.cpp moc_sw_dataIO.cpp moc_sw_paintImageWidget.cpp moc_gts_repetitiveStructure.cpp moc_gts_paintWidget.cpp
moc_sw_mainwindow.cpp: sw_dataType.h \
sw_glviewer.h \
sw_floorplan.h \
ui_FloorPlan.h \
sw_codingEdit.h \
sw_functions.h \
gts_repetitiveStructure.h \
ui_gts_repetitiveStructure.h \
gts_paintWidget.h \
gts_paintShape.h \
sw_dataIO.h \
ui_mainwindow.h \
sw_paintImageWidget.h \
sw_mainwindow.h
/usr/bin/moc-qt4 $(DEFINES) $(INCPATH) sw_mainwindow.h -o moc_sw_mainwindow.cpp
moc_sw_glviewer.cpp: sw_dataType.h \
sw_floorplan.h \
ui_FloorPlan.h \
sw_codingEdit.h \
sw_functions.h \
gts_repetitiveStructure.h \
ui_gts_repetitiveStructure.h \
gts_paintWidget.h \
gts_paintShape.h \
sw_glviewer.h
/usr/bin/moc-qt4 $(DEFINES) $(INCPATH) sw_glviewer.h -o moc_sw_glviewer.cpp
moc_sw_floorplan.cpp: ui_FloorPlan.h \
sw_dataType.h \
sw_codingEdit.h \
sw_functions.h \
gts_repetitiveStructure.h \
ui_gts_repetitiveStructure.h \
gts_paintWidget.h \
gts_paintShape.h \
sw_floorplan.h
/usr/bin/moc-qt4 $(DEFINES) $(INCPATH) sw_floorplan.h -o moc_sw_floorplan.cpp
moc_sw_dataIO.cpp: sw_dataType.h \
sw_dataIO.h
/usr/bin/moc-qt4 $(DEFINES) $(INCPATH) sw_dataIO.h -o moc_sw_dataIO.cpp
moc_sw_paintImageWidget.cpp: sw_dataType.h \
sw_paintImageWidget.h
/usr/bin/moc-qt4 $(DEFINES) $(INCPATH) sw_paintImageWidget.h -o moc_sw_paintImageWidget.cpp
moc_gts_repetitiveStructure.cpp: ui_gts_repetitiveStructure.h \
gts_paintWidget.h \
gts_paintShape.h \
gts_repetitiveStructure.h
/usr/bin/moc-qt4 $(DEFINES) $(INCPATH) gts_repetitiveStructure.h -o moc_gts_repetitiveStructure.cpp
moc_gts_paintWidget.cpp: gts_paintShape.h \
gts_paintWidget.h
/usr/bin/moc-qt4 $(DEFINES) $(INCPATH) gts_paintWidget.h -o moc_gts_paintWidget.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: ui_mainwindow.h ui_FloorPlan.h ui_gts_repetitiveStructure.h
compiler_uic_clean:
-$(DEL_FILE) ui_mainwindow.h ui_FloorPlan.h ui_gts_repetitiveStructure.h
ui_mainwindow.h: mainwindow.ui \
sw_glviewer.h \
sw_paintImageWidget.h \
sw_dataType.h \
sw_floorplan.h \
ui_FloorPlan.h \
sw_codingEdit.h \
sw_functions.h \
gts_repetitiveStructure.h \
ui_gts_repetitiveStructure.h \
gts_paintWidget.h \
gts_paintShape.h \
sw_dataType.h
/usr/bin/uic-qt4 mainwindow.ui -o ui_mainwindow.h
ui_FloorPlan.h: FloorPlan.ui
/usr/bin/uic-qt4 FloorPlan.ui -o ui_FloorPlan.h
ui_gts_repetitiveStructure.h: gts_repetitiveStructure.ui \
gts_paintWidget.h \
gts_paintShape.h
/usr/bin/uic-qt4 gts_repetitiveStructure.ui -o ui_gts_repetitiveStructure.h
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 compiler_uic_clean
####### Compile
main.o: main.cpp sw_mainwindow.h \
sw_dataType.h \
sw_glviewer.h \
sw_floorplan.h \
ui_FloorPlan.h \
sw_codingEdit.h \
sw_functions.h \
gts_repetitiveStructure.h \
ui_gts_repetitiveStructure.h \
gts_paintWidget.h \
gts_paintShape.h \
sw_dataIO.h \
ui_mainwindow.h \
sw_paintImageWidget.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o main.o main.cpp
unionFindGraph.o: unionFindGraph.cpp unionFindGraph.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o unionFindGraph.o unionFindGraph.cpp
sw_regionGrowing.o: sw_regionGrowing.cpp sw_regionGrowing.h \
sw_dataType.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o sw_regionGrowing.o sw_regionGrowing.cpp
sw_mainwindow.o: sw_mainwindow.cpp sw_mainwindow.h \
sw_dataType.h \
sw_glviewer.h \
sw_floorplan.h \
ui_FloorPlan.h \
sw_codingEdit.h \
sw_functions.h \
gts_repetitiveStructure.h \
ui_gts_repetitiveStructure.h \
gts_paintWidget.h \
gts_paintShape.h \
sw_dataIO.h \
ui_mainwindow.h \
sw_paintImageWidget.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o sw_mainwindow.o sw_mainwindow.cpp
sw_graph_vec.o: sw_graph_vec.cpp sw_graph_vec.h \
sw_alpha_expansion.h \
energy.h \
graph.h \
block.h \
sw_dataType.h \
sw_functions.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o sw_graph_vec.o sw_graph_vec.cpp
sw_graph_str.o: sw_graph_str.cpp sw_graph_str.h \
sw_alpha_expansion.h \
energy.h \
graph.h \
block.h \
sw_dataType.h \
sw_functions.h \
sw_codingEdit.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o sw_graph_str.o sw_graph_str.cpp
sw_glviewer.o: sw_glviewer.cpp sw_glviewer.h \
sw_dataType.h \
sw_floorplan.h \
ui_FloorPlan.h \
sw_codingEdit.h \
sw_functions.h \
gts_repetitiveStructure.h \
ui_gts_repetitiveStructure.h \
gts_paintWidget.h \
gts_paintShape.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o sw_glviewer.o sw_glviewer.cpp
sw_functions.o: sw_functions.cpp sw_functions.h \
sw_dataType.h \
unionFindGraph.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o sw_functions.o sw_functions.cpp
sw_floorplan.o: sw_floorplan.cpp sw_floorplan.h \
ui_FloorPlan.h \
sw_dataType.h \
sw_codingEdit.h \
sw_functions.h \
gts_repetitiveStructure.h \
ui_gts_repetitiveStructure.h \
gts_paintWidget.h \
gts_paintShape.h \
sw_cornerExtraction.h \
sw_alpha_expansion.h \
energy.h \
graph.h \
block.h \
sw_regionGrowing.h \
sw_cgal_mesh_processing.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o sw_floorplan.o sw_floorplan.cpp
sw_dataType.o: sw_dataType.cpp sw_dataType.h \
sw_cgal_mesh_processing.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o sw_dataType.o sw_dataType.cpp
sw_dataIO.o: sw_dataIO.cpp sw_dataIO.h \
sw_dataType.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o sw_dataIO.o sw_dataIO.cpp
sw_cornerExtraction.o: sw_cornerExtraction.cpp sw_functions.h \
sw_dataType.h \
sw_cornerExtraction.h \
sw_alpha_expansion.h \
energy.h \
graph.h \
block.h \
sw_regionGrowing.h \
sw_graph_vec.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o sw_cornerExtraction.o sw_cornerExtraction.cpp
sw_codingEdit.o: sw_codingEdit.cpp sw_codingEdit.h \
sw_dataType.h \
sw_functions.h \
sw_graph_str.h \
sw_alpha_expansion.h \
energy.h \
graph.h \
block.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o sw_codingEdit.o sw_codingEdit.cpp
sw_cgal_mesh_processing.o: sw_cgal_mesh_processing.cpp sw_cgal_mesh_processing.h \
sw_dataType.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o sw_cgal_mesh_processing.o sw_cgal_mesh_processing.cpp
sw_alpha_expansion.o: sw_alpha_expansion.cpp sw_alpha_expansion.h \
energy.h \
graph.h \
block.h \
sw_dataType.h \
sw_functions.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o sw_alpha_expansion.o sw_alpha_expansion.cpp
maxflow.o: maxflow.cpp graph.h \
block.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o maxflow.o maxflow.cpp
graph.o: graph.cpp graph.h \
block.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o graph.o graph.cpp
sw_paintImageWidget.o: sw_paintImageWidget.cpp sw_paintImageWidget.h \
sw_dataType.h \
sw_functions.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o sw_paintImageWidget.o sw_paintImageWidget.cpp
gts_repetitveStructure.o: gts_repetitveStructure.cpp gts_minESingleV1.h \
gts_repetitiveStructure.h \
ui_gts_repetitiveStructure.h \
gts_paintWidget.h \
gts_paintShape.h \
sw_functions.h \
sw_dataType.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o gts_repetitveStructure.o gts_repetitveStructure.cpp
gts_paintWidget.o: gts_paintWidget.cpp gts_paintWidget.h \
gts_paintShape.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o gts_paintWidget.o gts_paintWidget.cpp
gts_paintShape.o: gts_paintShape.cpp gts_paintShape.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o gts_paintShape.o gts_paintShape.cpp
gts_minESingleV1.o: gts_minESingleV1.cpp gts_minESingleV1.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o gts_minESingleV1.o gts_minESingleV1.cpp
moc_sw_mainwindow.o: moc_sw_mainwindow.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o moc_sw_mainwindow.o moc_sw_mainwindow.cpp
moc_sw_glviewer.o: moc_sw_glviewer.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o moc_sw_glviewer.o moc_sw_glviewer.cpp
moc_sw_floorplan.o: moc_sw_floorplan.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o moc_sw_floorplan.o moc_sw_floorplan.cpp
moc_sw_dataIO.o: moc_sw_dataIO.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o moc_sw_dataIO.o moc_sw_dataIO.cpp
moc_sw_paintImageWidget.o: moc_sw_paintImageWidget.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o moc_sw_paintImageWidget.o moc_sw_paintImageWidget.cpp
moc_gts_repetitiveStructure.o: moc_gts_repetitiveStructure.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o moc_gts_repetitiveStructure.o moc_gts_repetitiveStructure.cpp
moc_gts_paintWidget.o: moc_gts_paintWidget.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o moc_gts_paintWidget.o moc_gts_paintWidget.cpp
####### Install
install: FORCE
uninstall: FORCE
FORCE: