-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
1052 lines (823 loc) · 38.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
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
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 2.8
# Default target executed when no arguments are given to make.
default_target: all
.PHONY : default_target
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Remove some rules from gmake that .SUFFIXES does not remove.
SUFFIXES =
.SUFFIXES: .hpux_make_needs_suffix_list
# Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
# The shell in which to execute make rules.
SHELL = /bin/sh
# The CMake executable.
CMAKE_COMMAND = /usr/bin/cmake
# The command to remove a file.
RM = /usr/bin/cmake -E remove -f
# Escaping for special characters.
EQUALS = =
# The program to use to edit the cache.
CMAKE_EDIT_COMMAND = /usr/bin/cmake-gui
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /home/abhishek/g2o
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/abhishek/g2o
#=============================================================================
# Targets provided globally by CMake.
# Special rule for the target edit_cache
edit_cache:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake cache editor..."
/usr/bin/cmake-gui -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
.PHONY : edit_cache
# Special rule for the target edit_cache
edit_cache/fast: edit_cache
.PHONY : edit_cache/fast
# Special rule for the target install
install: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..."
/usr/bin/cmake -P cmake_install.cmake
.PHONY : install
# Special rule for the target install
install/fast: preinstall/fast
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..."
/usr/bin/cmake -P cmake_install.cmake
.PHONY : install/fast
# Special rule for the target install/local
install/local: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..."
/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
.PHONY : install/local
# Special rule for the target install/local
install/local/fast: install/local
.PHONY : install/local/fast
# Special rule for the target install/strip
install/strip: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..."
/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
.PHONY : install/strip
# Special rule for the target install/strip
install/strip/fast: install/strip
.PHONY : install/strip/fast
# Special rule for the target list_install_components
list_install_components:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\""
.PHONY : list_install_components
# Special rule for the target list_install_components
list_install_components/fast: list_install_components
.PHONY : list_install_components/fast
# Special rule for the target rebuild_cache
rebuild_cache:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..."
/usr/bin/cmake -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
.PHONY : rebuild_cache
# Special rule for the target rebuild_cache
rebuild_cache/fast: rebuild_cache
.PHONY : rebuild_cache/fast
# The main all target
all: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /home/abhishek/g2o/CMakeFiles /home/abhishek/g2o/CMakeFiles/progress.marks
$(MAKE) -f CMakeFiles/Makefile2 all
$(CMAKE_COMMAND) -E cmake_progress_start /home/abhishek/g2o/CMakeFiles 0
.PHONY : all
# The main clean target
clean:
$(MAKE) -f CMakeFiles/Makefile2 clean
.PHONY : clean
# The main clean target
clean/fast: clean
.PHONY : clean/fast
# Prepare targets for installation.
preinstall: all
$(MAKE) -f CMakeFiles/Makefile2 preinstall
.PHONY : preinstall
# Prepare targets for installation.
preinstall/fast:
$(MAKE) -f CMakeFiles/Makefile2 preinstall
.PHONY : preinstall/fast
# clear depends
depend:
$(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
.PHONY : depend
#=============================================================================
# Target rules for targets named freeglut_minimal
# Build rule for target.
freeglut_minimal: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 freeglut_minimal
.PHONY : freeglut_minimal
# fast build rule for target.
freeglut_minimal/fast:
$(MAKE) -f EXTERNAL/freeglut/CMakeFiles/freeglut_minimal.dir/build.make EXTERNAL/freeglut/CMakeFiles/freeglut_minimal.dir/build
.PHONY : freeglut_minimal/fast
#=============================================================================
# Target rules for targets named opengl_helper
# Build rule for target.
opengl_helper: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 opengl_helper
.PHONY : opengl_helper
# fast build rule for target.
opengl_helper/fast:
$(MAKE) -f g2o/stuff/CMakeFiles/opengl_helper.dir/build.make g2o/stuff/CMakeFiles/opengl_helper.dir/build
.PHONY : opengl_helper/fast
#=============================================================================
# Target rules for targets named stuff
# Build rule for target.
stuff: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 stuff
.PHONY : stuff
# fast build rule for target.
stuff/fast:
$(MAKE) -f g2o/stuff/CMakeFiles/stuff.dir/build.make g2o/stuff/CMakeFiles/stuff.dir/build
.PHONY : stuff/fast
#=============================================================================
# Target rules for targets named core
# Build rule for target.
core: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 core
.PHONY : core
# fast build rule for target.
core/fast:
$(MAKE) -f g2o/core/CMakeFiles/core.dir/build.make g2o/core/CMakeFiles/core.dir/build
.PHONY : core/fast
#=============================================================================
# Target rules for targets named g2o_cli_application
# Build rule for target.
g2o_cli_application: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 g2o_cli_application
.PHONY : g2o_cli_application
# fast build rule for target.
g2o_cli_application/fast:
$(MAKE) -f g2o/apps/g2o_cli/CMakeFiles/g2o_cli_application.dir/build.make g2o/apps/g2o_cli/CMakeFiles/g2o_cli_application.dir/build
.PHONY : g2o_cli_application/fast
#=============================================================================
# Target rules for targets named g2o_cli_library
# Build rule for target.
g2o_cli_library: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 g2o_cli_library
.PHONY : g2o_cli_library
# fast build rule for target.
g2o_cli_library/fast:
$(MAKE) -f g2o/apps/g2o_cli/CMakeFiles/g2o_cli_library.dir/build.make g2o/apps/g2o_cli/CMakeFiles/g2o_cli_library.dir/build
.PHONY : g2o_cli_library/fast
#=============================================================================
# Target rules for targets named g2o_hierarchical_application
# Build rule for target.
g2o_hierarchical_application: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 g2o_hierarchical_application
.PHONY : g2o_hierarchical_application
# fast build rule for target.
g2o_hierarchical_application/fast:
$(MAKE) -f g2o/apps/g2o_hierarchical/CMakeFiles/g2o_hierarchical_application.dir/build.make g2o/apps/g2o_hierarchical/CMakeFiles/g2o_hierarchical_application.dir/build
.PHONY : g2o_hierarchical_application/fast
#=============================================================================
# Target rules for targets named g2o_hierarchical_library
# Build rule for target.
g2o_hierarchical_library: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 g2o_hierarchical_library
.PHONY : g2o_hierarchical_library
# fast build rule for target.
g2o_hierarchical_library/fast:
$(MAKE) -f g2o/apps/g2o_hierarchical/CMakeFiles/g2o_hierarchical_library.dir/build.make g2o/apps/g2o_hierarchical/CMakeFiles/g2o_hierarchical_library.dir/build
.PHONY : g2o_hierarchical_library/fast
#=============================================================================
# Target rules for targets named convertSegmentLine_application
# Build rule for target.
convertSegmentLine_application: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 convertSegmentLine_application
.PHONY : convertSegmentLine_application
# fast build rule for target.
convertSegmentLine_application/fast:
$(MAKE) -f g2o/apps/g2o_simulator/CMakeFiles/convertSegmentLine_application.dir/build.make g2o/apps/g2o_simulator/CMakeFiles/convertSegmentLine_application.dir/build
.PHONY : convertSegmentLine_application/fast
#=============================================================================
# Target rules for targets named g2o_anonymize_observations_application
# Build rule for target.
g2o_anonymize_observations_application: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 g2o_anonymize_observations_application
.PHONY : g2o_anonymize_observations_application
# fast build rule for target.
g2o_anonymize_observations_application/fast:
$(MAKE) -f g2o/apps/g2o_simulator/CMakeFiles/g2o_anonymize_observations_application.dir/build.make g2o/apps/g2o_simulator/CMakeFiles/g2o_anonymize_observations_application.dir/build
.PHONY : g2o_anonymize_observations_application/fast
#=============================================================================
# Target rules for targets named g2o_simulator2d_application
# Build rule for target.
g2o_simulator2d_application: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 g2o_simulator2d_application
.PHONY : g2o_simulator2d_application
# fast build rule for target.
g2o_simulator2d_application/fast:
$(MAKE) -f g2o/apps/g2o_simulator/CMakeFiles/g2o_simulator2d_application.dir/build.make g2o/apps/g2o_simulator/CMakeFiles/g2o_simulator2d_application.dir/build
.PHONY : g2o_simulator2d_application/fast
#=============================================================================
# Target rules for targets named g2o_simulator3d_application
# Build rule for target.
g2o_simulator3d_application: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 g2o_simulator3d_application
.PHONY : g2o_simulator3d_application
# fast build rule for target.
g2o_simulator3d_application/fast:
$(MAKE) -f g2o/apps/g2o_simulator/CMakeFiles/g2o_simulator3d_application.dir/build.make g2o/apps/g2o_simulator/CMakeFiles/g2o_simulator3d_application.dir/build
.PHONY : g2o_simulator3d_application/fast
#=============================================================================
# Target rules for targets named g2o_simulator_library
# Build rule for target.
g2o_simulator_library: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 g2o_simulator_library
.PHONY : g2o_simulator_library
# fast build rule for target.
g2o_simulator_library/fast:
$(MAKE) -f g2o/apps/g2o_simulator/CMakeFiles/g2o_simulator_library.dir/build.make g2o/apps/g2o_simulator/CMakeFiles/g2o_simulator_library.dir/build
.PHONY : g2o_simulator_library/fast
#=============================================================================
# Target rules for targets named g2o_viewer
# Build rule for target.
g2o_viewer: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 g2o_viewer
.PHONY : g2o_viewer
# fast build rule for target.
g2o_viewer/fast:
$(MAKE) -f g2o/apps/g2o_viewer/CMakeFiles/g2o_viewer.dir/build.make g2o/apps/g2o_viewer/CMakeFiles/g2o_viewer.dir/build
.PHONY : g2o_viewer/fast
#=============================================================================
# Target rules for targets named viewer_library
# Build rule for target.
viewer_library: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 viewer_library
.PHONY : viewer_library
# fast build rule for target.
viewer_library/fast:
$(MAKE) -f g2o/apps/g2o_viewer/CMakeFiles/viewer_library.dir/build.make g2o/apps/g2o_viewer/CMakeFiles/viewer_library.dir/build
.PHONY : viewer_library/fast
#=============================================================================
# Target rules for targets named types_data
# Build rule for target.
types_data: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 types_data
.PHONY : types_data
# fast build rule for target.
types_data/fast:
$(MAKE) -f g2o/types/data/CMakeFiles/types_data.dir/build.make g2o/types/data/CMakeFiles/types_data.dir/build
.PHONY : types_data/fast
#=============================================================================
# Target rules for targets named types_slam2d
# Build rule for target.
types_slam2d: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 types_slam2d
.PHONY : types_slam2d
# fast build rule for target.
types_slam2d/fast:
$(MAKE) -f g2o/types/slam2d/CMakeFiles/types_slam2d.dir/build.make g2o/types/slam2d/CMakeFiles/types_slam2d.dir/build
.PHONY : types_slam2d/fast
#=============================================================================
# Target rules for targets named test_isometry3d_mappings
# Build rule for target.
test_isometry3d_mappings: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 test_isometry3d_mappings
.PHONY : test_isometry3d_mappings
# fast build rule for target.
test_isometry3d_mappings/fast:
$(MAKE) -f g2o/types/slam3d/CMakeFiles/test_isometry3d_mappings.dir/build.make g2o/types/slam3d/CMakeFiles/test_isometry3d_mappings.dir/build
.PHONY : test_isometry3d_mappings/fast
#=============================================================================
# Target rules for targets named test_mat2quat_jacobian
# Build rule for target.
test_mat2quat_jacobian: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 test_mat2quat_jacobian
.PHONY : test_mat2quat_jacobian
# fast build rule for target.
test_mat2quat_jacobian/fast:
$(MAKE) -f g2o/types/slam3d/CMakeFiles/test_mat2quat_jacobian.dir/build.make g2o/types/slam3d/CMakeFiles/test_mat2quat_jacobian.dir/build
.PHONY : test_mat2quat_jacobian/fast
#=============================================================================
# Target rules for targets named test_slam3d_jacobian
# Build rule for target.
test_slam3d_jacobian: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 test_slam3d_jacobian
.PHONY : test_slam3d_jacobian
# fast build rule for target.
test_slam3d_jacobian/fast:
$(MAKE) -f g2o/types/slam3d/CMakeFiles/test_slam3d_jacobian.dir/build.make g2o/types/slam3d/CMakeFiles/test_slam3d_jacobian.dir/build
.PHONY : test_slam3d_jacobian/fast
#=============================================================================
# Target rules for targets named types_slam3d
# Build rule for target.
types_slam3d: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 types_slam3d
.PHONY : types_slam3d
# fast build rule for target.
types_slam3d/fast:
$(MAKE) -f g2o/types/slam3d/CMakeFiles/types_slam3d.dir/build.make g2o/types/slam3d/CMakeFiles/types_slam3d.dir/build
.PHONY : types_slam3d/fast
#=============================================================================
# Target rules for targets named types_sba
# Build rule for target.
types_sba: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 types_sba
.PHONY : types_sba
# fast build rule for target.
types_sba/fast:
$(MAKE) -f g2o/types/sba/CMakeFiles/types_sba.dir/build.make g2o/types/sba/CMakeFiles/types_sba.dir/build
.PHONY : types_sba/fast
#=============================================================================
# Target rules for targets named types_sim3
# Build rule for target.
types_sim3: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 types_sim3
.PHONY : types_sim3
# fast build rule for target.
types_sim3/fast:
$(MAKE) -f g2o/types/sim3/CMakeFiles/types_sim3.dir/build.make g2o/types/sim3/CMakeFiles/types_sim3.dir/build
.PHONY : types_sim3/fast
#=============================================================================
# Target rules for targets named types_icp
# Build rule for target.
types_icp: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 types_icp
.PHONY : types_icp
# fast build rule for target.
types_icp/fast:
$(MAKE) -f g2o/types/icp/CMakeFiles/types_icp.dir/build.make g2o/types/icp/CMakeFiles/types_icp.dir/build
.PHONY : types_icp/fast
#=============================================================================
# Target rules for targets named types_sclam2d
# Build rule for target.
types_sclam2d: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 types_sclam2d
.PHONY : types_sclam2d
# fast build rule for target.
types_sclam2d/fast:
$(MAKE) -f g2o/types/sclam2d/CMakeFiles/types_sclam2d.dir/build.make g2o/types/sclam2d/CMakeFiles/types_sclam2d.dir/build
.PHONY : types_sclam2d/fast
#=============================================================================
# Target rules for targets named types_slam2d_addons
# Build rule for target.
types_slam2d_addons: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 types_slam2d_addons
.PHONY : types_slam2d_addons
# fast build rule for target.
types_slam2d_addons/fast:
$(MAKE) -f g2o/types/slam2d_addons/CMakeFiles/types_slam2d_addons.dir/build.make g2o/types/slam2d_addons/CMakeFiles/types_slam2d_addons.dir/build
.PHONY : types_slam2d_addons/fast
#=============================================================================
# Target rules for targets named test_line3d
# Build rule for target.
test_line3d: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 test_line3d
.PHONY : test_line3d
# fast build rule for target.
test_line3d/fast:
$(MAKE) -f g2o/types/slam3d_addons/CMakeFiles/test_line3d.dir/build.make g2o/types/slam3d_addons/CMakeFiles/test_line3d.dir/build
.PHONY : test_line3d/fast
#=============================================================================
# Target rules for targets named types_slam3d_addons
# Build rule for target.
types_slam3d_addons: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 types_slam3d_addons
.PHONY : types_slam3d_addons
# fast build rule for target.
types_slam3d_addons/fast:
$(MAKE) -f g2o/types/slam3d_addons/CMakeFiles/types_slam3d_addons.dir/build.make g2o/types/slam3d_addons/CMakeFiles/types_slam3d_addons.dir/build
.PHONY : types_slam3d_addons/fast
#=============================================================================
# Target rules for targets named solver_pcg
# Build rule for target.
solver_pcg: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 solver_pcg
.PHONY : solver_pcg
# fast build rule for target.
solver_pcg/fast:
$(MAKE) -f g2o/solvers/pcg/CMakeFiles/solver_pcg.dir/build.make g2o/solvers/pcg/CMakeFiles/solver_pcg.dir/build
.PHONY : solver_pcg/fast
#=============================================================================
# Target rules for targets named solver_dense
# Build rule for target.
solver_dense: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 solver_dense
.PHONY : solver_dense
# fast build rule for target.
solver_dense/fast:
$(MAKE) -f g2o/solvers/dense/CMakeFiles/solver_dense.dir/build.make g2o/solvers/dense/CMakeFiles/solver_dense.dir/build
.PHONY : solver_dense/fast
#=============================================================================
# Target rules for targets named solver_structure_only
# Build rule for target.
solver_structure_only: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 solver_structure_only
.PHONY : solver_structure_only
# fast build rule for target.
solver_structure_only/fast:
$(MAKE) -f g2o/solvers/structure_only/CMakeFiles/solver_structure_only.dir/build.make g2o/solvers/structure_only/CMakeFiles/solver_structure_only.dir/build
.PHONY : solver_structure_only/fast
#=============================================================================
# Target rules for targets named csparse_extension
# Build rule for target.
csparse_extension: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 csparse_extension
.PHONY : csparse_extension
# fast build rule for target.
csparse_extension/fast:
$(MAKE) -f g2o/solvers/csparse/CMakeFiles/csparse_extension.dir/build.make g2o/solvers/csparse/CMakeFiles/csparse_extension.dir/build
.PHONY : csparse_extension/fast
#=============================================================================
# Target rules for targets named solver_csparse
# Build rule for target.
solver_csparse: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 solver_csparse
.PHONY : solver_csparse
# fast build rule for target.
solver_csparse/fast:
$(MAKE) -f g2o/solvers/csparse/CMakeFiles/solver_csparse.dir/build.make g2o/solvers/csparse/CMakeFiles/solver_csparse.dir/build
.PHONY : solver_csparse/fast
#=============================================================================
# Target rules for targets named solver_slam2d_linear
# Build rule for target.
solver_slam2d_linear: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 solver_slam2d_linear
.PHONY : solver_slam2d_linear
# fast build rule for target.
solver_slam2d_linear/fast:
$(MAKE) -f g2o/solvers/slam2d_linear/CMakeFiles/solver_slam2d_linear.dir/build.make g2o/solvers/slam2d_linear/CMakeFiles/solver_slam2d_linear.dir/build
.PHONY : solver_slam2d_linear/fast
#=============================================================================
# Target rules for targets named solver_cholmod
# Build rule for target.
solver_cholmod: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 solver_cholmod
.PHONY : solver_cholmod
# fast build rule for target.
solver_cholmod/fast:
$(MAKE) -f g2o/solvers/cholmod/CMakeFiles/solver_cholmod.dir/build.make g2o/solvers/cholmod/CMakeFiles/solver_cholmod.dir/build
.PHONY : solver_cholmod/fast
#=============================================================================
# Target rules for targets named solver_eigen
# Build rule for target.
solver_eigen: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 solver_eigen
.PHONY : solver_eigen
# fast build rule for target.
solver_eigen/fast:
$(MAKE) -f g2o/solvers/eigen/CMakeFiles/solver_eigen.dir/build.make g2o/solvers/eigen/CMakeFiles/solver_eigen.dir/build
.PHONY : solver_eigen/fast
#=============================================================================
# Target rules for targets named circle_fit
# Build rule for target.
circle_fit: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 circle_fit
.PHONY : circle_fit
# fast build rule for target.
circle_fit/fast:
$(MAKE) -f g2o/examples/data_fitting/CMakeFiles/circle_fit.dir/build.make g2o/examples/data_fitting/CMakeFiles/circle_fit.dir/build
.PHONY : circle_fit/fast
#=============================================================================
# Target rules for targets named curve_fit
# Build rule for target.
curve_fit: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 curve_fit
.PHONY : curve_fit
# fast build rule for target.
curve_fit/fast:
$(MAKE) -f g2o/examples/data_fitting/CMakeFiles/curve_fit.dir/build.make g2o/examples/data_fitting/CMakeFiles/curve_fit.dir/build
.PHONY : curve_fit/fast
#=============================================================================
# Target rules for targets named create_sphere
# Build rule for target.
create_sphere: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 create_sphere
.PHONY : create_sphere
# fast build rule for target.
create_sphere/fast:
$(MAKE) -f g2o/examples/sphere/CMakeFiles/create_sphere.dir/build.make g2o/examples/sphere/CMakeFiles/create_sphere.dir/build
.PHONY : create_sphere/fast
#=============================================================================
# Target rules for targets named constant_velocity_target
# Build rule for target.
constant_velocity_target: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 constant_velocity_target
.PHONY : constant_velocity_target
# fast build rule for target.
constant_velocity_target/fast:
$(MAKE) -f g2o/examples/target/CMakeFiles/constant_velocity_target.dir/build.make g2o/examples/target/CMakeFiles/constant_velocity_target.dir/build
.PHONY : constant_velocity_target/fast
#=============================================================================
# Target rules for targets named static_target
# Build rule for target.
static_target: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 static_target
.PHONY : static_target
# fast build rule for target.
static_target/fast:
$(MAKE) -f g2o/examples/target/CMakeFiles/static_target.dir/build.make g2o/examples/target/CMakeFiles/static_target.dir/build
.PHONY : static_target/fast
#=============================================================================
# Target rules for targets named ba_demo
# Build rule for target.
ba_demo: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 ba_demo
.PHONY : ba_demo
# fast build rule for target.
ba_demo/fast:
$(MAKE) -f g2o/examples/ba/CMakeFiles/ba_demo.dir/build.make g2o/examples/ba/CMakeFiles/ba_demo.dir/build
.PHONY : ba_demo/fast
#=============================================================================
# Target rules for targets named ba_anchored_inverse_depth_demo
# Build rule for target.
ba_anchored_inverse_depth_demo: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 ba_anchored_inverse_depth_demo
.PHONY : ba_anchored_inverse_depth_demo
# fast build rule for target.
ba_anchored_inverse_depth_demo/fast:
$(MAKE) -f g2o/examples/ba_anchored_inverse_depth/CMakeFiles/ba_anchored_inverse_depth_demo.dir/build.make g2o/examples/ba_anchored_inverse_depth/CMakeFiles/ba_anchored_inverse_depth_demo.dir/build
.PHONY : ba_anchored_inverse_depth_demo/fast
#=============================================================================
# Target rules for targets named tutorial_slam2d
# Build rule for target.
tutorial_slam2d: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 tutorial_slam2d
.PHONY : tutorial_slam2d
# fast build rule for target.
tutorial_slam2d/fast:
$(MAKE) -f g2o/examples/tutorial_slam2d/CMakeFiles/tutorial_slam2d.dir/build.make g2o/examples/tutorial_slam2d/CMakeFiles/tutorial_slam2d.dir/build
.PHONY : tutorial_slam2d/fast
#=============================================================================
# Target rules for targets named tutorial_slam2d_library
# Build rule for target.
tutorial_slam2d_library: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 tutorial_slam2d_library
.PHONY : tutorial_slam2d_library
# fast build rule for target.
tutorial_slam2d_library/fast:
$(MAKE) -f g2o/examples/tutorial_slam2d/CMakeFiles/tutorial_slam2d_library.dir/build.make g2o/examples/tutorial_slam2d/CMakeFiles/tutorial_slam2d_library.dir/build
.PHONY : tutorial_slam2d_library/fast
#=============================================================================
# Target rules for targets named gicp_demo
# Build rule for target.
gicp_demo: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 gicp_demo
.PHONY : gicp_demo
# fast build rule for target.
gicp_demo/fast:
$(MAKE) -f g2o/examples/icp/CMakeFiles/gicp_demo.dir/build.make g2o/examples/icp/CMakeFiles/gicp_demo.dir/build
.PHONY : gicp_demo/fast
#=============================================================================
# Target rules for targets named gicp_sba_demo
# Build rule for target.
gicp_sba_demo: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 gicp_sba_demo
.PHONY : gicp_sba_demo
# fast build rule for target.
gicp_sba_demo/fast:
$(MAKE) -f g2o/examples/icp/CMakeFiles/gicp_sba_demo.dir/build.make g2o/examples/icp/CMakeFiles/gicp_sba_demo.dir/build
.PHONY : gicp_sba_demo/fast
#=============================================================================
# Target rules for targets named calibration_odom_laser_library
# Build rule for target.
calibration_odom_laser_library: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 calibration_odom_laser_library
.PHONY : calibration_odom_laser_library
# fast build rule for target.
calibration_odom_laser_library/fast:
$(MAKE) -f g2o/examples/calibration_odom_laser/CMakeFiles/calibration_odom_laser_library.dir/build.make g2o/examples/calibration_odom_laser/CMakeFiles/calibration_odom_laser_library.dir/build
.PHONY : calibration_odom_laser_library/fast
#=============================================================================
# Target rules for targets named sclam_laser_calib
# Build rule for target.
sclam_laser_calib: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 sclam_laser_calib
.PHONY : sclam_laser_calib
# fast build rule for target.
sclam_laser_calib/fast:
$(MAKE) -f g2o/examples/calibration_odom_laser/CMakeFiles/sclam_laser_calib.dir/build.make g2o/examples/calibration_odom_laser/CMakeFiles/sclam_laser_calib.dir/build
.PHONY : sclam_laser_calib/fast
#=============================================================================
# Target rules for targets named sclam_odom_laser
# Build rule for target.
sclam_odom_laser: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 sclam_odom_laser
.PHONY : sclam_odom_laser
# fast build rule for target.
sclam_odom_laser/fast:
$(MAKE) -f g2o/examples/calibration_odom_laser/CMakeFiles/sclam_odom_laser.dir/build.make g2o/examples/calibration_odom_laser/CMakeFiles/sclam_odom_laser.dir/build
.PHONY : sclam_odom_laser/fast
#=============================================================================
# Target rules for targets named sclam_pure_calibration
# Build rule for target.
sclam_pure_calibration: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 sclam_pure_calibration
.PHONY : sclam_pure_calibration
# fast build rule for target.
sclam_pure_calibration/fast:
$(MAKE) -f g2o/examples/calibration_odom_laser/CMakeFiles/sclam_pure_calibration.dir/build.make g2o/examples/calibration_odom_laser/CMakeFiles/sclam_pure_calibration.dir/build
.PHONY : sclam_pure_calibration/fast
#=============================================================================
# Target rules for targets named simple_optimize
# Build rule for target.
simple_optimize: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 simple_optimize
.PHONY : simple_optimize
# fast build rule for target.
simple_optimize/fast:
$(MAKE) -f g2o/examples/simple_optimize/CMakeFiles/simple_optimize.dir/build.make g2o/examples/simple_optimize/CMakeFiles/simple_optimize.dir/build
.PHONY : simple_optimize/fast
#=============================================================================
# Target rules for targets named simulator_3d_plane
# Build rule for target.
simulator_3d_plane: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 simulator_3d_plane
.PHONY : simulator_3d_plane
# fast build rule for target.
simulator_3d_plane/fast:
$(MAKE) -f g2o/examples/plane_slam/CMakeFiles/simulator_3d_plane.dir/build.make g2o/examples/plane_slam/CMakeFiles/simulator_3d_plane.dir/build
.PHONY : simulator_3d_plane/fast
#=============================================================================
# Target rules for targets named sba_demo
# Build rule for target.
sba_demo: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 sba_demo
.PHONY : sba_demo
# fast build rule for target.
sba_demo/fast:
$(MAKE) -f g2o/examples/sba/CMakeFiles/sba_demo.dir/build.make g2o/examples/sba/CMakeFiles/sba_demo.dir/build
.PHONY : sba_demo/fast
#=============================================================================
# Target rules for targets named bal_example
# Build rule for target.
bal_example: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 bal_example
.PHONY : bal_example
# fast build rule for target.
bal_example/fast:
$(MAKE) -f g2o/examples/bal/CMakeFiles/bal_example.dir/build.make g2o/examples/bal/CMakeFiles/bal_example.dir/build
.PHONY : bal_example/fast
#=============================================================================
# Target rules for targets named slam2d_g2o
# Build rule for target.
slam2d_g2o: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 slam2d_g2o
.PHONY : slam2d_g2o
# fast build rule for target.
slam2d_g2o/fast:
$(MAKE) -f g2o/examples/slam2d/CMakeFiles/slam2d_g2o.dir/build.make g2o/examples/slam2d/CMakeFiles/slam2d_g2o.dir/build
.PHONY : slam2d_g2o/fast
#=============================================================================
# Target rules for targets named convert_sba_slam3d
# Build rule for target.
convert_sba_slam3d: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 convert_sba_slam3d
.PHONY : convert_sba_slam3d
# fast build rule for target.
convert_sba_slam3d/fast:
$(MAKE) -f g2o/examples/data_convert/CMakeFiles/convert_sba_slam3d.dir/build.make g2o/examples/data_convert/CMakeFiles/convert_sba_slam3d.dir/build
.PHONY : convert_sba_slam3d/fast
#=============================================================================
# Target rules for targets named parser_library
# Build rule for target.
parser_library: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 parser_library
.PHONY : parser_library
# fast build rule for target.
parser_library/fast:
$(MAKE) -f g2o/examples/interactive_slam/slam_parser/parser/CMakeFiles/parser_library.dir/build.make g2o/examples/interactive_slam/slam_parser/parser/CMakeFiles/parser_library.dir/build
.PHONY : parser_library/fast
#=============================================================================
# Target rules for targets named interface_library
# Build rule for target.
interface_library: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 interface_library
.PHONY : interface_library
# fast build rule for target.
interface_library/fast:
$(MAKE) -f g2o/examples/interactive_slam/slam_parser/interface/CMakeFiles/interface_library.dir/build.make g2o/examples/interactive_slam/slam_parser/interface/CMakeFiles/interface_library.dir/build
.PHONY : interface_library/fast
#=============================================================================
# Target rules for targets named g2o_interactive_library
# Build rule for target.
g2o_interactive_library: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 g2o_interactive_library
.PHONY : g2o_interactive_library
# fast build rule for target.
g2o_interactive_library/fast:
$(MAKE) -f g2o/examples/interactive_slam/g2o_interactive/CMakeFiles/g2o_interactive_library.dir/build.make g2o/examples/interactive_slam/g2o_interactive/CMakeFiles/g2o_interactive_library.dir/build
.PHONY : g2o_interactive_library/fast
#=============================================================================
# Target rules for targets named g2o_online_application
# Build rule for target.
g2o_online_application: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 g2o_online_application
.PHONY : g2o_online_application
# fast build rule for target.
g2o_online_application/fast:
$(MAKE) -f g2o/examples/interactive_slam/g2o_interactive/CMakeFiles/g2o_online_application.dir/build.make g2o/examples/interactive_slam/g2o_interactive/CMakeFiles/g2o_online_application.dir/build
.PHONY : g2o_online_application/fast
#=============================================================================
# Target rules for targets named g2o_incremental_application
# Build rule for target.
g2o_incremental_application: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 g2o_incremental_application
.PHONY : g2o_incremental_application
# fast build rule for target.
g2o_incremental_application/fast:
$(MAKE) -f g2o/examples/interactive_slam/g2o_incremental/CMakeFiles/g2o_incremental_application.dir/build.make g2o/examples/interactive_slam/g2o_incremental/CMakeFiles/g2o_incremental_application.dir/build
.PHONY : g2o_incremental_application/fast
#=============================================================================
# Target rules for targets named g2o_incremental_library
# Build rule for target.
g2o_incremental_library: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 g2o_incremental_library
.PHONY : g2o_incremental_library
# fast build rule for target.
g2o_incremental_library/fast:
$(MAKE) -f g2o/examples/interactive_slam/g2o_incremental/CMakeFiles/g2o_incremental_library.dir/build.make g2o/examples/interactive_slam/g2o_incremental/CMakeFiles/g2o_incremental_library.dir/build
.PHONY : g2o_incremental_library/fast
# Help Target
help:
@echo "The following are some of the valid targets for this Makefile:"
@echo "... all (the default if no target is provided)"
@echo "... clean"
@echo "... depend"
@echo "... edit_cache"
@echo "... install"
@echo "... install/local"
@echo "... install/strip"
@echo "... list_install_components"
@echo "... rebuild_cache"
@echo "... freeglut_minimal"
@echo "... opengl_helper"
@echo "... stuff"
@echo "... core"
@echo "... g2o_cli_application"
@echo "... g2o_cli_library"
@echo "... g2o_hierarchical_application"
@echo "... g2o_hierarchical_library"
@echo "... convertSegmentLine_application"
@echo "... g2o_anonymize_observations_application"
@echo "... g2o_simulator2d_application"
@echo "... g2o_simulator3d_application"
@echo "... g2o_simulator_library"
@echo "... g2o_viewer"
@echo "... viewer_library"
@echo "... types_data"
@echo "... types_slam2d"
@echo "... test_isometry3d_mappings"
@echo "... test_mat2quat_jacobian"
@echo "... test_slam3d_jacobian"
@echo "... types_slam3d"
@echo "... types_sba"
@echo "... types_sim3"
@echo "... types_icp"
@echo "... types_sclam2d"