forked from google/or-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.gen.mk
5292 lines (4952 loc) · 297 KB
/
Makefile.gen.mk
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
BASE_DEPS = \
$(SRC_DIR)/ortools/base/accurate_sum.h \
$(SRC_DIR)/ortools/base/adjustable_priority_queue.h \
$(SRC_DIR)/ortools/base/adjustable_priority_queue-inl.h \
$(SRC_DIR)/ortools/base/base_export.h \
$(SRC_DIR)/ortools/base/basictypes.h \
$(SRC_DIR)/ortools/base/bitmap.h \
$(SRC_DIR)/ortools/base/case.h \
$(SRC_DIR)/ortools/base/cleanup.h \
$(SRC_DIR)/ortools/base/commandlineflags.h \
$(SRC_DIR)/ortools/base/container_logging.h \
$(SRC_DIR)/ortools/base/dynamic_library.h \
$(SRC_DIR)/ortools/base/encodingutils.h \
$(SRC_DIR)/ortools/base/file.h \
$(SRC_DIR)/ortools/base/filelineiter.h \
$(SRC_DIR)/ortools/base/gzipstring.h \
$(SRC_DIR)/ortools/base/hash.h \
$(SRC_DIR)/ortools/base/integral_types.h \
$(SRC_DIR)/ortools/base/int_type.h \
$(SRC_DIR)/ortools/base/iterator_adaptors.h \
$(SRC_DIR)/ortools/base/jniutil.h \
$(SRC_DIR)/ortools/base/linked_hash_map.h \
$(SRC_DIR)/ortools/base/logging_export.h \
$(SRC_DIR)/ortools/base/logging.h \
$(SRC_DIR)/ortools/base/logging_utilities.h \
$(SRC_DIR)/ortools/base/log_severity.h \
$(SRC_DIR)/ortools/base/macros.h \
$(SRC_DIR)/ortools/base/map_util.h \
$(SRC_DIR)/ortools/base/mathutil.h \
$(SRC_DIR)/ortools/base/murmur.h \
$(SRC_DIR)/ortools/base/protobuf_util.h \
$(SRC_DIR)/ortools/base/protoutil.h \
$(SRC_DIR)/ortools/base/ptr_util.h \
$(SRC_DIR)/ortools/base/python-swig.h \
$(SRC_DIR)/ortools/base/raw_logging.h \
$(SRC_DIR)/ortools/base/recordio.h \
$(SRC_DIR)/ortools/base/small_map.h \
$(SRC_DIR)/ortools/base/small_ordered_set.h \
$(SRC_DIR)/ortools/base/status_builder.h \
$(SRC_DIR)/ortools/base/status_macros.h \
$(SRC_DIR)/ortools/base/stl_logging.h \
$(SRC_DIR)/ortools/base/stl_util.h \
$(SRC_DIR)/ortools/base/strong_vector.h \
$(SRC_DIR)/ortools/base/sysinfo.h \
$(SRC_DIR)/ortools/base/thorough_hash.h \
$(SRC_DIR)/ortools/base/threadpool.h \
$(SRC_DIR)/ortools/base/timer.h \
$(SRC_DIR)/ortools/base/typeid.h \
$(SRC_DIR)/ortools/base/version.h \
$(SRC_DIR)/ortools/base/vlog_is_on.h
BASE_LIB_OBJS = \
$(OBJ_DIR)/base/bitmap.$O \
$(OBJ_DIR)/base/case.$O \
$(OBJ_DIR)/base/commandlineflags.$O \
$(OBJ_DIR)/base/file.$O \
$(OBJ_DIR)/base/logging.$O \
$(OBJ_DIR)/base/logging_utilities.$O \
$(OBJ_DIR)/base/raw_logging.$O \
$(OBJ_DIR)/base/recordio.$O \
$(OBJ_DIR)/base/sysinfo.$O \
$(OBJ_DIR)/base/threadpool.$O \
$(OBJ_DIR)/base/timer.$O \
$(OBJ_DIR)/base/version.$O \
$(OBJ_DIR)/base/vlog_is_on.$O
objs/base/bitmap.$O: ortools/base/bitmap.cc ortools/base/bitmap.h \
ortools/base/basictypes.h ortools/base/integral_types.h \
ortools/base/logging.h ortools/base/commandlineflags.h \
ortools/base/log_severity.h ortools/base/logging_export.h \
ortools/base/macros.h ortools/base/vlog_is_on.h | $(OBJ_DIR)/base
$(CCC) $(CFLAGS) -c $(SRC_DIR)$Sortools$Sbase$Sbitmap.cc $(OBJ_OUT)$(OBJ_DIR)$Sbase$Sbitmap.$O
objs/base/case.$O: ortools/base/case.cc ortools/base/case.h | $(OBJ_DIR)/base
$(CCC) $(CFLAGS) -c $(SRC_DIR)$Sortools$Sbase$Scase.cc $(OBJ_OUT)$(OBJ_DIR)$Sbase$Scase.$O
objs/base/commandlineflags.$O: ortools/base/commandlineflags.cc \
ortools/base/commandlineflags.h | $(OBJ_DIR)/base
$(CCC) $(CFLAGS) -c $(SRC_DIR)$Sortools$Sbase$Scommandlineflags.cc $(OBJ_OUT)$(OBJ_DIR)$Sbase$Scommandlineflags.$O
objs/base/file.$O: ortools/base/file.cc ortools/base/file.h \
ortools/base/integral_types.h ortools/base/logging.h \
ortools/base/commandlineflags.h ortools/base/log_severity.h \
ortools/base/logging_export.h ortools/base/macros.h \
ortools/base/vlog_is_on.h | $(OBJ_DIR)/base
$(CCC) $(CFLAGS) -c $(SRC_DIR)$Sortools$Sbase$Sfile.cc $(OBJ_OUT)$(OBJ_DIR)$Sbase$Sfile.$O
objs/base/logging.$O: ortools/base/logging.cc ortools/base/logging.h \
ortools/base/commandlineflags.h ortools/base/integral_types.h \
ortools/base/log_severity.h ortools/base/logging_export.h \
ortools/base/macros.h ortools/base/vlog_is_on.h \
ortools/base/logging_utilities.h ortools/base/raw_logging.h | $(OBJ_DIR)/base
$(CCC) $(CFLAGS) -c $(SRC_DIR)$Sortools$Sbase$Slogging.cc $(OBJ_OUT)$(OBJ_DIR)$Sbase$Slogging.$O
objs/base/logging_utilities.$O: ortools/base/logging_utilities.cc \
ortools/base/logging_utilities.h ortools/base/logging.h \
ortools/base/commandlineflags.h ortools/base/integral_types.h \
ortools/base/log_severity.h ortools/base/logging_export.h \
ortools/base/macros.h ortools/base/vlog_is_on.h | $(OBJ_DIR)/base
$(CCC) $(CFLAGS) -c $(SRC_DIR)$Sortools$Sbase$Slogging_utilities.cc $(OBJ_OUT)$(OBJ_DIR)$Sbase$Slogging_utilities.$O
objs/base/raw_logging.$O: ortools/base/raw_logging.cc \
ortools/base/raw_logging.h ortools/base/log_severity.h \
ortools/base/logging_export.h ortools/base/vlog_is_on.h \
ortools/base/integral_types.h ortools/base/commandlineflags.h \
ortools/base/logging.h ortools/base/macros.h \
ortools/base/logging_utilities.h | $(OBJ_DIR)/base
$(CCC) $(CFLAGS) -c $(SRC_DIR)$Sortools$Sbase$Sraw_logging.cc $(OBJ_OUT)$(OBJ_DIR)$Sbase$Sraw_logging.$O
objs/base/recordio.$O: ortools/base/recordio.cc ortools/base/recordio.h \
ortools/base/file.h ortools/base/integral_types.h ortools/base/logging.h \
ortools/base/commandlineflags.h ortools/base/log_severity.h \
ortools/base/logging_export.h ortools/base/macros.h \
ortools/base/vlog_is_on.h | $(OBJ_DIR)/base
$(CCC) $(CFLAGS) -c $(SRC_DIR)$Sortools$Sbase$Srecordio.cc $(OBJ_OUT)$(OBJ_DIR)$Sbase$Srecordio.$O
objs/base/sysinfo.$O: ortools/base/sysinfo.cc ortools/base/sysinfo.h \
ortools/base/basictypes.h ortools/base/integral_types.h \
ortools/base/logging.h ortools/base/commandlineflags.h \
ortools/base/log_severity.h ortools/base/logging_export.h \
ortools/base/macros.h ortools/base/vlog_is_on.h | $(OBJ_DIR)/base
$(CCC) $(CFLAGS) -c $(SRC_DIR)$Sortools$Sbase$Ssysinfo.cc $(OBJ_OUT)$(OBJ_DIR)$Sbase$Ssysinfo.$O
objs/base/threadpool.$O: ortools/base/threadpool.cc \
ortools/base/threadpool.h ortools/base/logging.h \
ortools/base/commandlineflags.h ortools/base/integral_types.h \
ortools/base/log_severity.h ortools/base/logging_export.h \
ortools/base/macros.h ortools/base/vlog_is_on.h | $(OBJ_DIR)/base
$(CCC) $(CFLAGS) -c $(SRC_DIR)$Sortools$Sbase$Sthreadpool.cc $(OBJ_OUT)$(OBJ_DIR)$Sbase$Sthreadpool.$O
objs/base/timer.$O: ortools/base/timer.cc ortools/base/timer.h \
ortools/base/basictypes.h ortools/base/integral_types.h \
ortools/base/logging.h ortools/base/commandlineflags.h \
ortools/base/log_severity.h ortools/base/logging_export.h \
ortools/base/macros.h ortools/base/vlog_is_on.h | $(OBJ_DIR)/base
$(CCC) $(CFLAGS) -c $(SRC_DIR)$Sortools$Sbase$Stimer.cc $(OBJ_OUT)$(OBJ_DIR)$Sbase$Stimer.$O
objs/base/version.$O: ortools/base/version.cc ortools/base/version.h | $(OBJ_DIR)/base
$(CCC) $(CFLAGS) -c $(SRC_DIR)$Sortools$Sbase$Sversion.cc $(OBJ_OUT)$(OBJ_DIR)$Sbase$Sversion.$O
objs/base/vlog_is_on.$O: ortools/base/vlog_is_on.cc \
ortools/base/vlog_is_on.h ortools/base/integral_types.h \
ortools/base/log_severity.h ortools/base/logging_export.h \
ortools/base/commandlineflags.h ortools/base/logging.h \
ortools/base/macros.h ortools/base/logging_utilities.h \
ortools/base/raw_logging.h | $(OBJ_DIR)/base
$(CCC) $(CFLAGS) -c $(SRC_DIR)$Sortools$Sbase$Svlog_is_on.cc $(OBJ_OUT)$(OBJ_DIR)$Sbase$Svlog_is_on.$O
PORT_DEPS = \
$(SRC_DIR)/ortools/port/file.h \
$(SRC_DIR)/ortools/port/proto_utils.h \
$(SRC_DIR)/ortools/port/sysinfo.h \
$(SRC_DIR)/ortools/port/utf8.h
PORT_LIB_OBJS = \
$(OBJ_DIR)/port/file.$O \
$(OBJ_DIR)/port/sysinfo.$O
objs/port/file.$O: ortools/port/file.cc ortools/port/file.h \
ortools/base/logging.h ortools/base/commandlineflags.h \
ortools/base/integral_types.h ortools/base/log_severity.h \
ortools/base/logging_export.h ortools/base/macros.h \
ortools/base/vlog_is_on.h ortools/base/file.h | $(OBJ_DIR)/port
$(CCC) $(CFLAGS) -c $(SRC_DIR)$Sortools$Sport$Sfile.cc $(OBJ_OUT)$(OBJ_DIR)$Sport$Sfile.$O
objs/port/sysinfo.$O: ortools/port/sysinfo.cc ortools/base/sysinfo.h \
ortools/base/basictypes.h ortools/base/integral_types.h \
ortools/base/logging.h ortools/base/commandlineflags.h \
ortools/base/log_severity.h ortools/base/logging_export.h \
ortools/base/macros.h ortools/base/vlog_is_on.h ortools/port/sysinfo.h | $(OBJ_DIR)/port
$(CCC) $(CFLAGS) -c $(SRC_DIR)$Sortools$Sport$Ssysinfo.cc $(OBJ_OUT)$(OBJ_DIR)$Sport$Ssysinfo.$O
UTIL_DEPS = \
$(SRC_DIR)/ortools/util/adaptative_parameter_value.h \
$(SRC_DIR)/ortools/util/affine_relation.h \
$(SRC_DIR)/ortools/util/bitset.h \
$(SRC_DIR)/ortools/util/cached_log.h \
$(SRC_DIR)/ortools/util/file_util.h \
$(SRC_DIR)/ortools/util/fp_utils.h \
$(SRC_DIR)/ortools/util/functions_swig_helpers.h \
$(SRC_DIR)/ortools/util/functions_swig_test_helpers.h \
$(SRC_DIR)/ortools/util/graph_export.h \
$(SRC_DIR)/ortools/util/integer_pq.h \
$(SRC_DIR)/ortools/util/lazy_mutable_copy.h \
$(SRC_DIR)/ortools/util/logging.h \
$(SRC_DIR)/ortools/util/monoid_operation_tree.h \
$(SRC_DIR)/ortools/util/permutation.h \
$(SRC_DIR)/ortools/util/piecewise_linear_function.h \
$(SRC_DIR)/ortools/util/proto_tools.h \
$(SRC_DIR)/ortools/util/random_engine.h \
$(SRC_DIR)/ortools/util/range_minimum_query.h \
$(SRC_DIR)/ortools/util/range_query_function.h \
$(SRC_DIR)/ortools/util/rational_approximation.h \
$(SRC_DIR)/ortools/util/return_macros.h \
$(SRC_DIR)/ortools/util/rev.h \
$(SRC_DIR)/ortools/util/running_stat.h \
$(SRC_DIR)/ortools/util/saturated_arithmetic.h \
$(SRC_DIR)/ortools/util/sigint.h \
$(SRC_DIR)/ortools/util/sorted_interval_list.h \
$(SRC_DIR)/ortools/util/sort.h \
$(SRC_DIR)/ortools/util/stats.h \
$(SRC_DIR)/ortools/util/string_array.h \
$(SRC_DIR)/ortools/util/testing_utils.h \
$(SRC_DIR)/ortools/util/time_limit.h \
$(SRC_DIR)/ortools/util/tuple_set.h \
$(SRC_DIR)/ortools/util/vector_map.h \
$(SRC_DIR)/ortools/util/vector_or_function.h \
$(SRC_DIR)/ortools/util/zvector.h \
$(GEN_DIR)/ortools/util/optional_boolean.pb.h
UTIL_LIB_OBJS = \
$(OBJ_DIR)/util/bitset.$O \
$(OBJ_DIR)/util/cached_log.$O \
$(OBJ_DIR)/util/file_util.$O \
$(OBJ_DIR)/util/fp_utils.$O \
$(OBJ_DIR)/util/graph_export.$O \
$(OBJ_DIR)/util/logging.$O \
$(OBJ_DIR)/util/piecewise_linear_function.$O \
$(OBJ_DIR)/util/proto_tools.$O \
$(OBJ_DIR)/util/range_query_function.$O \
$(OBJ_DIR)/util/rational_approximation.$O \
$(OBJ_DIR)/util/sigint.$O \
$(OBJ_DIR)/util/sorted_interval_list.$O \
$(OBJ_DIR)/util/stats.$O \
$(OBJ_DIR)/util/time_limit.$O \
$(OBJ_DIR)/util/optional_boolean.pb.$O
objs/util/bitset.$O: ortools/util/bitset.cc ortools/util/bitset.h \
ortools/base/integral_types.h ortools/base/logging.h \
ortools/base/commandlineflags.h ortools/base/log_severity.h \
ortools/base/logging_export.h ortools/base/macros.h \
ortools/base/vlog_is_on.h | $(OBJ_DIR)/util
$(CCC) $(CFLAGS) -c $(SRC_DIR)$Sortools$Sutil$Sbitset.cc $(OBJ_OUT)$(OBJ_DIR)$Sutil$Sbitset.$O
objs/util/cached_log.$O: ortools/util/cached_log.cc \
ortools/util/cached_log.h ortools/base/basictypes.h \
ortools/base/integral_types.h ortools/base/logging.h \
ortools/base/commandlineflags.h ortools/base/log_severity.h \
ortools/base/logging_export.h ortools/base/macros.h \
ortools/base/vlog_is_on.h | $(OBJ_DIR)/util
$(CCC) $(CFLAGS) -c $(SRC_DIR)$Sortools$Sutil$Scached_log.cc $(OBJ_OUT)$(OBJ_DIR)$Sutil$Scached_log.$O
objs/util/file_util.$O: ortools/util/file_util.cc ortools/util/file_util.h \
ortools/base/file.h ortools/base/integral_types.h ortools/base/logging.h \
ortools/base/commandlineflags.h ortools/base/log_severity.h \
ortools/base/logging_export.h ortools/base/macros.h \
ortools/base/vlog_is_on.h ortools/base/recordio.h \
ortools/base/gzipstring.h ortools/base/status_macros.h \
ortools/base/status_builder.h | $(OBJ_DIR)/util
$(CCC) $(CFLAGS) -c $(SRC_DIR)$Sortools$Sutil$Sfile_util.cc $(OBJ_OUT)$(OBJ_DIR)$Sutil$Sfile_util.$O
objs/util/fp_utils.$O: ortools/util/fp_utils.cc ortools/util/fp_utils.h \
ortools/base/integral_types.h ortools/base/logging.h \
ortools/base/commandlineflags.h ortools/base/log_severity.h \
ortools/base/logging_export.h ortools/base/macros.h \
ortools/base/vlog_is_on.h ortools/util/bitset.h | $(OBJ_DIR)/util
$(CCC) $(CFLAGS) -c $(SRC_DIR)$Sortools$Sutil$Sfp_utils.cc $(OBJ_OUT)$(OBJ_DIR)$Sutil$Sfp_utils.$O
objs/util/graph_export.$O: ortools/util/graph_export.cc \
ortools/util/graph_export.h ortools/base/file.h \
ortools/base/integral_types.h ortools/base/logging.h \
ortools/base/commandlineflags.h ortools/base/log_severity.h \
ortools/base/logging_export.h ortools/base/macros.h \
ortools/base/vlog_is_on.h | $(OBJ_DIR)/util
$(CCC) $(CFLAGS) -c $(SRC_DIR)$Sortools$Sutil$Sgraph_export.cc $(OBJ_OUT)$(OBJ_DIR)$Sutil$Sgraph_export.$O
objs/util/logging.$O: ortools/util/logging.cc ortools/util/logging.h \
ortools/base/logging.h ortools/base/commandlineflags.h \
ortools/base/integral_types.h ortools/base/log_severity.h \
ortools/base/logging_export.h ortools/base/macros.h \
ortools/base/vlog_is_on.h | $(OBJ_DIR)/util
$(CCC) $(CFLAGS) -c $(SRC_DIR)$Sortools$Sutil$Slogging.cc $(OBJ_OUT)$(OBJ_DIR)$Sutil$Slogging.$O
objs/util/piecewise_linear_function.$O: \
ortools/util/piecewise_linear_function.cc \
ortools/util/piecewise_linear_function.h ortools/base/basictypes.h \
ortools/base/integral_types.h ortools/base/logging.h \
ortools/base/commandlineflags.h ortools/base/log_severity.h \
ortools/base/logging_export.h ortools/base/macros.h \
ortools/base/vlog_is_on.h ortools/util/saturated_arithmetic.h \
ortools/util/bitset.h | $(OBJ_DIR)/util
$(CCC) $(CFLAGS) -c $(SRC_DIR)$Sortools$Sutil$Spiecewise_linear_function.cc $(OBJ_OUT)$(OBJ_DIR)$Sutil$Spiecewise_linear_function.$O
objs/util/proto_tools.$O: ortools/util/proto_tools.cc \
ortools/util/proto_tools.h | $(OBJ_DIR)/util
$(CCC) $(CFLAGS) -c $(SRC_DIR)$Sortools$Sutil$Sproto_tools.cc $(OBJ_OUT)$(OBJ_DIR)$Sutil$Sproto_tools.$O
objs/util/range_query_function.$O: ortools/util/range_query_function.cc \
ortools/util/range_query_function.h ortools/base/integral_types.h \
ortools/base/logging.h ortools/base/commandlineflags.h \
ortools/base/log_severity.h ortools/base/logging_export.h \
ortools/base/macros.h ortools/base/vlog_is_on.h \
ortools/util/range_minimum_query.h ortools/util/bitset.h | $(OBJ_DIR)/util
$(CCC) $(CFLAGS) -c $(SRC_DIR)$Sortools$Sutil$Srange_query_function.cc $(OBJ_OUT)$(OBJ_DIR)$Sutil$Srange_query_function.$O
objs/util/rational_approximation.$O: \
ortools/util/rational_approximation.cc \
ortools/util/rational_approximation.h ortools/base/integral_types.h \
ortools/base/logging.h ortools/base/commandlineflags.h \
ortools/base/log_severity.h ortools/base/logging_export.h \
ortools/base/macros.h ortools/base/vlog_is_on.h | $(OBJ_DIR)/util
$(CCC) $(CFLAGS) -c $(SRC_DIR)$Sortools$Sutil$Srational_approximation.cc $(OBJ_OUT)$(OBJ_DIR)$Sutil$Srational_approximation.$O
objs/util/sigint.$O: ortools/util/sigint.cc ortools/util/sigint.h \
ortools/base/logging.h ortools/base/commandlineflags.h \
ortools/base/integral_types.h ortools/base/log_severity.h \
ortools/base/logging_export.h ortools/base/macros.h \
ortools/base/vlog_is_on.h | $(OBJ_DIR)/util
$(CCC) $(CFLAGS) -c $(SRC_DIR)$Sortools$Sutil$Ssigint.cc $(OBJ_OUT)$(OBJ_DIR)$Sutil$Ssigint.$O
objs/util/sorted_interval_list.$O: ortools/util/sorted_interval_list.cc \
ortools/util/sorted_interval_list.h ortools/base/integral_types.h \
ortools/base/logging.h ortools/base/commandlineflags.h \
ortools/base/log_severity.h ortools/base/logging_export.h \
ortools/base/macros.h ortools/base/vlog_is_on.h \
ortools/util/saturated_arithmetic.h ortools/util/bitset.h | $(OBJ_DIR)/util
$(CCC) $(CFLAGS) -c $(SRC_DIR)$Sortools$Sutil$Ssorted_interval_list.cc $(OBJ_OUT)$(OBJ_DIR)$Sutil$Ssorted_interval_list.$O
objs/util/stats.$O: ortools/util/stats.cc ortools/util/stats.h \
ortools/base/macros.h ortools/base/timer.h ortools/base/basictypes.h \
ortools/base/integral_types.h ortools/base/logging.h \
ortools/base/commandlineflags.h ortools/base/log_severity.h \
ortools/base/logging_export.h ortools/base/vlog_is_on.h \
ortools/base/stl_util.h ortools/port/sysinfo.h ortools/port/utf8.h \
ortools/base/encodingutils.h | $(OBJ_DIR)/util
$(CCC) $(CFLAGS) -c $(SRC_DIR)$Sortools$Sutil$Sstats.cc $(OBJ_OUT)$(OBJ_DIR)$Sutil$Sstats.$O
objs/util/time_limit.$O: ortools/util/time_limit.cc \
ortools/util/time_limit.h ortools/base/commandlineflags.h \
ortools/base/logging.h ortools/base/integral_types.h \
ortools/base/log_severity.h ortools/base/logging_export.h \
ortools/base/macros.h ortools/base/vlog_is_on.h ortools/base/timer.h \
ortools/base/basictypes.h ortools/util/running_stat.h | $(OBJ_DIR)/util
$(CCC) $(CFLAGS) -c $(SRC_DIR)$Sortools$Sutil$Stime_limit.cc $(OBJ_OUT)$(OBJ_DIR)$Sutil$Stime_limit.$O
ortools/util/optional_boolean.proto: ;
$(GEN_DIR)/ortools/util/optional_boolean.pb.cc: \
$(SRC_DIR)/ortools/util/optional_boolean.proto | $(GEN_DIR)/ortools/util
$(PROTOC) --experimental_allow_proto3_optional --proto_path=$(INC_DIR) $(PROTOBUF_PROTOC_INC) --cpp_out=$(GEN_PATH) $(SRC_DIR)/ortools/util/optional_boolean.proto
$(GEN_DIR)/ortools/util/optional_boolean.pb.h: \
$(GEN_DIR)/ortools/util/optional_boolean.pb.cc
$(TOUCH) $(GEN_PATH)$Sortools$Sutil$Soptional_boolean.pb.h
$(OBJ_DIR)/util/optional_boolean.pb.$O: \
$(GEN_DIR)/ortools/util/optional_boolean.pb.cc | $(OBJ_DIR)/util
$(CCC) $(CFLAGS) -c $(GEN_PATH)$Sortools$Sutil$Soptional_boolean.pb.cc $(OBJ_OUT)$(OBJ_DIR)$Sutil$Soptional_boolean.pb.$O
INIT_DEPS = \
$(SRC_DIR)/ortools/init/init.h \
$(GEN_DIR)/ortools/sat/cp_model.pb.h \
$(GEN_DIR)/ortools/sat/sat_parameters.pb.h
INIT_LIB_OBJS = \
SCHEDULING_DEPS = \
$(SRC_DIR)/ortools/scheduling/jobshop_scheduling_parser.h \
$(SRC_DIR)/ortools/scheduling/rcpsp_parser.h \
$(GEN_DIR)/ortools/scheduling/jobshop_scheduling.pb.h \
$(GEN_DIR)/ortools/scheduling/rcpsp.pb.h
SCHEDULING_LIB_OBJS = \
$(OBJ_DIR)/scheduling/jobshop_scheduling_parser.$O \
$(OBJ_DIR)/scheduling/rcpsp_parser.$O \
$(OBJ_DIR)/scheduling/jobshop_scheduling.pb.$O \
$(OBJ_DIR)/scheduling/rcpsp.pb.$O
objs/scheduling/jobshop_scheduling_parser.$O: \
ortools/scheduling/jobshop_scheduling_parser.cc \
ortools/scheduling/jobshop_scheduling_parser.h \
ortools/base/integral_types.h \
ortools/gen/ortools/scheduling/jobshop_scheduling.pb.h \
ortools/base/commandlineflags.h ortools/base/filelineiter.h \
ortools/base/file.h ortools/base/logging.h ortools/base/log_severity.h \
ortools/base/logging_export.h ortools/base/macros.h \
ortools/base/vlog_is_on.h | $(OBJ_DIR)/scheduling
$(CCC) $(CFLAGS) -c $(SRC_DIR)$Sortools$Sscheduling$Sjobshop_scheduling_parser.cc $(OBJ_OUT)$(OBJ_DIR)$Sscheduling$Sjobshop_scheduling_parser.$O
objs/scheduling/rcpsp_parser.$O: ortools/scheduling/rcpsp_parser.cc \
ortools/scheduling/rcpsp_parser.h ortools/base/integral_types.h \
ortools/gen/ortools/scheduling/rcpsp.pb.h ortools/base/filelineiter.h \
ortools/base/file.h ortools/base/logging.h \
ortools/base/commandlineflags.h ortools/base/log_severity.h \
ortools/base/logging_export.h ortools/base/macros.h \
ortools/base/vlog_is_on.h | $(OBJ_DIR)/scheduling
$(CCC) $(CFLAGS) -c $(SRC_DIR)$Sortools$Sscheduling$Srcpsp_parser.cc $(OBJ_OUT)$(OBJ_DIR)$Sscheduling$Srcpsp_parser.$O
ortools/scheduling/jobshop_scheduling.proto: ;
$(GEN_DIR)/ortools/scheduling/jobshop_scheduling.pb.cc: \
$(SRC_DIR)/ortools/scheduling/jobshop_scheduling.proto | $(GEN_DIR)/ortools/scheduling
$(PROTOC) --experimental_allow_proto3_optional --proto_path=$(INC_DIR) $(PROTOBUF_PROTOC_INC) --cpp_out=$(GEN_PATH) $(SRC_DIR)/ortools/scheduling/jobshop_scheduling.proto
$(GEN_DIR)/ortools/scheduling/jobshop_scheduling.pb.h: \
$(GEN_DIR)/ortools/scheduling/jobshop_scheduling.pb.cc
$(TOUCH) $(GEN_PATH)$Sortools$Sscheduling$Sjobshop_scheduling.pb.h
$(OBJ_DIR)/scheduling/jobshop_scheduling.pb.$O: \
$(GEN_DIR)/ortools/scheduling/jobshop_scheduling.pb.cc | $(OBJ_DIR)/scheduling
$(CCC) $(CFLAGS) -c $(GEN_PATH)$Sortools$Sscheduling$Sjobshop_scheduling.pb.cc $(OBJ_OUT)$(OBJ_DIR)$Sscheduling$Sjobshop_scheduling.pb.$O
ortools/scheduling/rcpsp.proto: ;
$(GEN_DIR)/ortools/scheduling/rcpsp.pb.cc: \
$(SRC_DIR)/ortools/scheduling/rcpsp.proto | $(GEN_DIR)/ortools/scheduling
$(PROTOC) --experimental_allow_proto3_optional --proto_path=$(INC_DIR) $(PROTOBUF_PROTOC_INC) --cpp_out=$(GEN_PATH) $(SRC_DIR)/ortools/scheduling/rcpsp.proto
$(GEN_DIR)/ortools/scheduling/rcpsp.pb.h: \
$(GEN_DIR)/ortools/scheduling/rcpsp.pb.cc
$(TOUCH) $(GEN_PATH)$Sortools$Sscheduling$Srcpsp.pb.h
$(OBJ_DIR)/scheduling/rcpsp.pb.$O: \
$(GEN_DIR)/ortools/scheduling/rcpsp.pb.cc | $(OBJ_DIR)/scheduling
$(CCC) $(CFLAGS) -c $(GEN_PATH)$Sortools$Sscheduling$Srcpsp.pb.cc $(OBJ_OUT)$(OBJ_DIR)$Sscheduling$Srcpsp.pb.$O
LP_DATA_DEPS = \
$(SRC_DIR)/ortools/lp_data/lp_data.h \
$(SRC_DIR)/ortools/lp_data/lp_data_utils.h \
$(SRC_DIR)/ortools/lp_data/lp_decomposer.h \
$(SRC_DIR)/ortools/lp_data/lp_print_utils.h \
$(SRC_DIR)/ortools/lp_data/lp_types.h \
$(SRC_DIR)/ortools/lp_data/lp_utils.h \
$(SRC_DIR)/ortools/lp_data/matrix_scaler.h \
$(SRC_DIR)/ortools/lp_data/matrix_utils.h \
$(SRC_DIR)/ortools/lp_data/model_reader.h \
$(SRC_DIR)/ortools/lp_data/mps_reader.h \
$(SRC_DIR)/ortools/lp_data/permutation.h \
$(SRC_DIR)/ortools/lp_data/proto_utils.h \
$(SRC_DIR)/ortools/lp_data/scattered_vector.h \
$(SRC_DIR)/ortools/lp_data/sparse_column.h \
$(SRC_DIR)/ortools/lp_data/sparse.h \
$(SRC_DIR)/ortools/lp_data/sparse_row.h \
$(SRC_DIR)/ortools/lp_data/sparse_vector.h
LP_DATA_LIB_OBJS = \
$(OBJ_DIR)/lp_data/lp_data.$O \
$(OBJ_DIR)/lp_data/lp_data_utils.$O \
$(OBJ_DIR)/lp_data/lp_decomposer.$O \
$(OBJ_DIR)/lp_data/lp_print_utils.$O \
$(OBJ_DIR)/lp_data/lp_types.$O \
$(OBJ_DIR)/lp_data/lp_utils.$O \
$(OBJ_DIR)/lp_data/matrix_scaler.$O \
$(OBJ_DIR)/lp_data/matrix_utils.$O \
$(OBJ_DIR)/lp_data/model_reader.$O \
$(OBJ_DIR)/lp_data/mps_reader.$O \
$(OBJ_DIR)/lp_data/proto_utils.$O \
$(OBJ_DIR)/lp_data/sparse.$O \
$(OBJ_DIR)/lp_data/sparse_column.$O
objs/lp_data/lp_data.$O: ortools/lp_data/lp_data.cc \
ortools/lp_data/lp_data.h ortools/base/hash.h ortools/base/basictypes.h \
ortools/base/integral_types.h ortools/base/logging.h \
ortools/base/commandlineflags.h ortools/base/log_severity.h \
ortools/base/logging_export.h ortools/base/macros.h \
ortools/base/vlog_is_on.h ortools/base/int_type.h \
ortools/gen/ortools/glop/parameters.pb.h ortools/lp_data/lp_types.h \
ortools/base/strong_vector.h ortools/util/bitset.h \
ortools/lp_data/sparse.h ortools/lp_data/permutation.h \
ortools/util/return_macros.h ortools/lp_data/scattered_vector.h \
ortools/lp_data/sparse_column.h ortools/lp_data/sparse_vector.h \
ortools/graph/iterators.h ortools/util/fp_utils.h \
ortools/lp_data/lp_print_utils.h ortools/lp_data/lp_utils.h \
ortools/base/accurate_sum.h ortools/lp_data/matrix_utils.h | $(OBJ_DIR)/lp_data
$(CCC) $(CFLAGS) -c $(SRC_DIR)$Sortools$Slp_data$Slp_data.cc $(OBJ_OUT)$(OBJ_DIR)$Slp_data$Slp_data.$O
objs/lp_data/lp_data_utils.$O: ortools/lp_data/lp_data_utils.cc \
ortools/lp_data/lp_data_utils.h ortools/gen/ortools/glop/parameters.pb.h \
ortools/lp_data/lp_data.h ortools/base/hash.h ortools/base/basictypes.h \
ortools/base/integral_types.h ortools/base/logging.h \
ortools/base/commandlineflags.h ortools/base/log_severity.h \
ortools/base/logging_export.h ortools/base/macros.h \
ortools/base/vlog_is_on.h ortools/base/int_type.h \
ortools/lp_data/lp_types.h ortools/base/strong_vector.h \
ortools/util/bitset.h ortools/lp_data/sparse.h \
ortools/lp_data/permutation.h ortools/util/return_macros.h \
ortools/lp_data/scattered_vector.h ortools/lp_data/sparse_column.h \
ortools/lp_data/sparse_vector.h ortools/graph/iterators.h \
ortools/util/fp_utils.h ortools/lp_data/matrix_scaler.h \
ortools/glop/revised_simplex.h ortools/glop/basis_representation.h \
ortools/glop/lu_factorization.h ortools/glop/markowitz.h \
ortools/glop/status.h ortools/util/stats.h ortools/base/timer.h \
ortools/glop/rank_one_update.h ortools/lp_data/lp_utils.h \
ortools/base/accurate_sum.h ortools/glop/dual_edge_norms.h \
ortools/glop/entering_variable.h ortools/glop/primal_edge_norms.h \
ortools/glop/update_row.h ortools/glop/variables_info.h \
ortools/glop/reduced_costs.h ortools/glop/pricing.h \
ortools/glop/variable_values.h ortools/lp_data/lp_print_utils.h \
ortools/lp_data/sparse_row.h ortools/util/logging.h \
ortools/util/random_engine.h ortools/util/time_limit.h \
ortools/util/running_stat.h | $(OBJ_DIR)/lp_data
$(CCC) $(CFLAGS) -c $(SRC_DIR)$Sortools$Slp_data$Slp_data_utils.cc $(OBJ_OUT)$(OBJ_DIR)$Slp_data$Slp_data_utils.$O
objs/lp_data/lp_decomposer.$O: ortools/lp_data/lp_decomposer.cc \
ortools/lp_data/lp_decomposer.h ortools/lp_data/lp_data.h \
ortools/base/hash.h ortools/base/basictypes.h \
ortools/base/integral_types.h ortools/base/logging.h \
ortools/base/commandlineflags.h ortools/base/log_severity.h \
ortools/base/logging_export.h ortools/base/macros.h \
ortools/base/vlog_is_on.h ortools/base/int_type.h \
ortools/gen/ortools/glop/parameters.pb.h ortools/lp_data/lp_types.h \
ortools/base/strong_vector.h ortools/util/bitset.h \
ortools/lp_data/sparse.h ortools/lp_data/permutation.h \
ortools/util/return_macros.h ortools/lp_data/scattered_vector.h \
ortools/lp_data/sparse_column.h ortools/lp_data/sparse_vector.h \
ortools/graph/iterators.h ortools/util/fp_utils.h \
ortools/algorithms/dynamic_partition.h ortools/lp_data/lp_utils.h \
ortools/base/accurate_sum.h | $(OBJ_DIR)/lp_data
$(CCC) $(CFLAGS) -c $(SRC_DIR)$Sortools$Slp_data$Slp_decomposer.cc $(OBJ_OUT)$(OBJ_DIR)$Slp_data$Slp_decomposer.$O
objs/lp_data/lp_print_utils.$O: ortools/lp_data/lp_print_utils.cc \
ortools/lp_data/lp_print_utils.h ortools/base/integral_types.h \
ortools/lp_data/lp_types.h ortools/base/basictypes.h \
ortools/base/logging.h ortools/base/commandlineflags.h \
ortools/base/log_severity.h ortools/base/logging_export.h \
ortools/base/macros.h ortools/base/vlog_is_on.h ortools/base/int_type.h \
ortools/base/strong_vector.h ortools/util/bitset.h \
ortools/util/rational_approximation.h | $(OBJ_DIR)/lp_data
$(CCC) $(CFLAGS) -c $(SRC_DIR)$Sortools$Slp_data$Slp_print_utils.cc $(OBJ_OUT)$(OBJ_DIR)$Slp_data$Slp_print_utils.$O
objs/lp_data/lp_types.$O: ortools/lp_data/lp_types.cc \
ortools/lp_data/lp_types.h ortools/base/basictypes.h \
ortools/base/integral_types.h ortools/base/logging.h \
ortools/base/commandlineflags.h ortools/base/log_severity.h \
ortools/base/logging_export.h ortools/base/macros.h \
ortools/base/vlog_is_on.h ortools/base/int_type.h \
ortools/base/strong_vector.h ortools/util/bitset.h | $(OBJ_DIR)/lp_data
$(CCC) $(CFLAGS) -c $(SRC_DIR)$Sortools$Slp_data$Slp_types.cc $(OBJ_OUT)$(OBJ_DIR)$Slp_data$Slp_types.$O
objs/lp_data/lp_utils.$O: ortools/lp_data/lp_utils.cc \
ortools/lp_data/lp_utils.h ortools/base/accurate_sum.h \
ortools/lp_data/lp_types.h ortools/base/basictypes.h \
ortools/base/integral_types.h ortools/base/logging.h \
ortools/base/commandlineflags.h ortools/base/log_severity.h \
ortools/base/logging_export.h ortools/base/macros.h \
ortools/base/vlog_is_on.h ortools/base/int_type.h \
ortools/base/strong_vector.h ortools/util/bitset.h \
ortools/lp_data/scattered_vector.h ortools/lp_data/sparse_column.h \
ortools/lp_data/sparse_vector.h ortools/graph/iterators.h \
ortools/lp_data/permutation.h ortools/util/return_macros.h | $(OBJ_DIR)/lp_data
$(CCC) $(CFLAGS) -c $(SRC_DIR)$Sortools$Slp_data$Slp_utils.cc $(OBJ_OUT)$(OBJ_DIR)$Slp_data$Slp_utils.$O
objs/lp_data/matrix_scaler.$O: ortools/lp_data/matrix_scaler.cc \
ortools/lp_data/matrix_scaler.h ortools/base/integral_types.h \
ortools/base/macros.h ortools/gen/ortools/glop/parameters.pb.h \
ortools/glop/revised_simplex.h ortools/glop/basis_representation.h \
ortools/base/logging.h ortools/base/commandlineflags.h \
ortools/base/log_severity.h ortools/base/logging_export.h \
ortools/base/vlog_is_on.h ortools/glop/lu_factorization.h \
ortools/glop/markowitz.h ortools/base/strong_vector.h \
ortools/base/int_type.h ortools/glop/status.h ortools/lp_data/lp_types.h \
ortools/base/basictypes.h ortools/util/bitset.h \
ortools/lp_data/permutation.h ortools/util/return_macros.h \
ortools/lp_data/sparse.h ortools/lp_data/scattered_vector.h \
ortools/lp_data/sparse_column.h ortools/lp_data/sparse_vector.h \
ortools/graph/iterators.h ortools/util/stats.h ortools/base/timer.h \
ortools/glop/rank_one_update.h ortools/lp_data/lp_utils.h \
ortools/base/accurate_sum.h ortools/glop/dual_edge_norms.h \
ortools/lp_data/lp_data.h ortools/base/hash.h ortools/util/fp_utils.h \
ortools/glop/entering_variable.h ortools/glop/primal_edge_norms.h \
ortools/glop/update_row.h ortools/glop/variables_info.h \
ortools/glop/reduced_costs.h ortools/glop/pricing.h \
ortools/glop/variable_values.h ortools/lp_data/lp_print_utils.h \
ortools/lp_data/sparse_row.h ortools/util/logging.h \
ortools/util/random_engine.h ortools/util/time_limit.h \
ortools/util/running_stat.h | $(OBJ_DIR)/lp_data
$(CCC) $(CFLAGS) -c $(SRC_DIR)$Sortools$Slp_data$Smatrix_scaler.cc $(OBJ_OUT)$(OBJ_DIR)$Slp_data$Smatrix_scaler.$O
objs/lp_data/matrix_utils.$O: ortools/lp_data/matrix_utils.cc \
ortools/lp_data/matrix_utils.h ortools/lp_data/lp_types.h \
ortools/base/basictypes.h ortools/base/integral_types.h \
ortools/base/logging.h ortools/base/commandlineflags.h \
ortools/base/log_severity.h ortools/base/logging_export.h \
ortools/base/macros.h ortools/base/vlog_is_on.h ortools/base/int_type.h \
ortools/base/strong_vector.h ortools/util/bitset.h \
ortools/lp_data/sparse.h ortools/lp_data/permutation.h \
ortools/util/return_macros.h ortools/lp_data/scattered_vector.h \
ortools/lp_data/sparse_column.h ortools/lp_data/sparse_vector.h \
ortools/graph/iterators.h ortools/base/hash.h | $(OBJ_DIR)/lp_data
$(CCC) $(CFLAGS) -c $(SRC_DIR)$Sortools$Slp_data$Smatrix_utils.cc $(OBJ_OUT)$(OBJ_DIR)$Slp_data$Smatrix_utils.$O
objs/lp_data/model_reader.$O: ortools/lp_data/model_reader.cc \
ortools/lp_data/model_reader.h \
ortools/gen/ortools/linear_solver/linear_solver.pb.h \
ortools/gen/ortools/util/optional_boolean.pb.h ortools/lp_data/lp_data.h \
ortools/base/hash.h ortools/base/basictypes.h \
ortools/base/integral_types.h ortools/base/logging.h \
ortools/base/commandlineflags.h ortools/base/log_severity.h \
ortools/base/logging_export.h ortools/base/macros.h \
ortools/base/vlog_is_on.h ortools/base/int_type.h \
ortools/gen/ortools/glop/parameters.pb.h ortools/lp_data/lp_types.h \
ortools/base/strong_vector.h ortools/util/bitset.h \
ortools/lp_data/sparse.h ortools/lp_data/permutation.h \
ortools/util/return_macros.h ortools/lp_data/scattered_vector.h \
ortools/lp_data/sparse_column.h ortools/lp_data/sparse_vector.h \
ortools/graph/iterators.h ortools/util/fp_utils.h ortools/base/file.h \
ortools/lp_data/proto_utils.h ortools/util/file_util.h \
ortools/base/recordio.h | $(OBJ_DIR)/lp_data
$(CCC) $(CFLAGS) -c $(SRC_DIR)$Sortools$Slp_data$Smodel_reader.cc $(OBJ_OUT)$(OBJ_DIR)$Slp_data$Smodel_reader.$O
objs/lp_data/mps_reader.$O: ortools/lp_data/mps_reader.cc \
ortools/lp_data/mps_reader.h ortools/base/filelineiter.h \
ortools/base/file.h ortools/base/integral_types.h ortools/base/logging.h \
ortools/base/commandlineflags.h ortools/base/log_severity.h \
ortools/base/logging_export.h ortools/base/macros.h \
ortools/base/vlog_is_on.h ortools/base/hash.h ortools/base/basictypes.h \
ortools/base/int_type.h ortools/base/map_util.h \
ortools/base/protobuf_util.h ortools/base/status_macros.h \
ortools/base/status_builder.h \
ortools/gen/ortools/linear_solver/linear_solver.pb.h \
ortools/gen/ortools/util/optional_boolean.pb.h ortools/lp_data/lp_data.h \
ortools/gen/ortools/glop/parameters.pb.h ortools/lp_data/lp_types.h \
ortools/base/strong_vector.h ortools/util/bitset.h \
ortools/lp_data/sparse.h ortools/lp_data/permutation.h \
ortools/util/return_macros.h ortools/lp_data/scattered_vector.h \
ortools/lp_data/sparse_column.h ortools/lp_data/sparse_vector.h \
ortools/graph/iterators.h ortools/util/fp_utils.h | $(OBJ_DIR)/lp_data
$(CCC) $(CFLAGS) -c $(SRC_DIR)$Sortools$Slp_data$Smps_reader.cc $(OBJ_OUT)$(OBJ_DIR)$Slp_data$Smps_reader.$O
objs/lp_data/proto_utils.$O: ortools/lp_data/proto_utils.cc \
ortools/lp_data/proto_utils.h \
ortools/gen/ortools/linear_solver/linear_solver.pb.h \
ortools/gen/ortools/util/optional_boolean.pb.h ortools/lp_data/lp_data.h \
ortools/base/hash.h ortools/base/basictypes.h \
ortools/base/integral_types.h ortools/base/logging.h \
ortools/base/commandlineflags.h ortools/base/log_severity.h \
ortools/base/logging_export.h ortools/base/macros.h \
ortools/base/vlog_is_on.h ortools/base/int_type.h \
ortools/gen/ortools/glop/parameters.pb.h ortools/lp_data/lp_types.h \
ortools/base/strong_vector.h ortools/util/bitset.h \
ortools/lp_data/sparse.h ortools/lp_data/permutation.h \
ortools/util/return_macros.h ortools/lp_data/scattered_vector.h \
ortools/lp_data/sparse_column.h ortools/lp_data/sparse_vector.h \
ortools/graph/iterators.h ortools/util/fp_utils.h | $(OBJ_DIR)/lp_data
$(CCC) $(CFLAGS) -c $(SRC_DIR)$Sortools$Slp_data$Sproto_utils.cc $(OBJ_OUT)$(OBJ_DIR)$Slp_data$Sproto_utils.$O
objs/lp_data/sparse.$O: ortools/lp_data/sparse.cc ortools/lp_data/sparse.h \
ortools/base/integral_types.h ortools/lp_data/lp_types.h \
ortools/base/basictypes.h ortools/base/logging.h \
ortools/base/commandlineflags.h ortools/base/log_severity.h \
ortools/base/logging_export.h ortools/base/macros.h \
ortools/base/vlog_is_on.h ortools/base/int_type.h \
ortools/base/strong_vector.h ortools/util/bitset.h \
ortools/lp_data/permutation.h ortools/util/return_macros.h \
ortools/lp_data/scattered_vector.h ortools/lp_data/sparse_column.h \
ortools/lp_data/sparse_vector.h ortools/graph/iterators.h | $(OBJ_DIR)/lp_data
$(CCC) $(CFLAGS) -c $(SRC_DIR)$Sortools$Slp_data$Ssparse.cc $(OBJ_OUT)$(OBJ_DIR)$Slp_data$Ssparse.$O
objs/lp_data/sparse_column.$O: ortools/lp_data/sparse_column.cc \
ortools/lp_data/sparse_column.h ortools/lp_data/sparse_vector.h \
ortools/base/integral_types.h ortools/base/logging.h \
ortools/base/commandlineflags.h ortools/base/log_severity.h \
ortools/base/logging_export.h ortools/base/macros.h \
ortools/base/vlog_is_on.h ortools/graph/iterators.h \
ortools/lp_data/lp_types.h ortools/base/basictypes.h \
ortools/base/int_type.h ortools/base/strong_vector.h \
ortools/util/bitset.h ortools/lp_data/permutation.h \
ortools/util/return_macros.h | $(OBJ_DIR)/lp_data
$(CCC) $(CFLAGS) -c $(SRC_DIR)$Sortools$Slp_data$Ssparse_column.cc $(OBJ_OUT)$(OBJ_DIR)$Slp_data$Ssparse_column.$O
GLOP_DEPS = \
$(SRC_DIR)/ortools/glop/basis_representation.h \
$(SRC_DIR)/ortools/glop/dual_edge_norms.h \
$(SRC_DIR)/ortools/glop/entering_variable.h \
$(SRC_DIR)/ortools/glop/initial_basis.h \
$(SRC_DIR)/ortools/glop/lp_solver.h \
$(SRC_DIR)/ortools/glop/lu_factorization.h \
$(SRC_DIR)/ortools/glop/markowitz.h \
$(SRC_DIR)/ortools/glop/preprocessor.h \
$(SRC_DIR)/ortools/glop/pricing.h \
$(SRC_DIR)/ortools/glop/primal_edge_norms.h \
$(SRC_DIR)/ortools/glop/rank_one_update.h \
$(SRC_DIR)/ortools/glop/reduced_costs.h \
$(SRC_DIR)/ortools/glop/revised_simplex.h \
$(SRC_DIR)/ortools/glop/status.h \
$(SRC_DIR)/ortools/glop/update_row.h \
$(SRC_DIR)/ortools/glop/variables_info.h \
$(SRC_DIR)/ortools/glop/variable_values.h \
$(GEN_DIR)/ortools/glop/parameters.pb.h
GLOP_LIB_OBJS = \
$(OBJ_DIR)/glop/basis_representation.$O \
$(OBJ_DIR)/glop/dual_edge_norms.$O \
$(OBJ_DIR)/glop/entering_variable.$O \
$(OBJ_DIR)/glop/initial_basis.$O \
$(OBJ_DIR)/glop/lp_solver.$O \
$(OBJ_DIR)/glop/lu_factorization.$O \
$(OBJ_DIR)/glop/markowitz.$O \
$(OBJ_DIR)/glop/preprocessor.$O \
$(OBJ_DIR)/glop/primal_edge_norms.$O \
$(OBJ_DIR)/glop/reduced_costs.$O \
$(OBJ_DIR)/glop/revised_simplex.$O \
$(OBJ_DIR)/glop/status.$O \
$(OBJ_DIR)/glop/update_row.$O \
$(OBJ_DIR)/glop/variable_values.$O \
$(OBJ_DIR)/glop/variables_info.$O \
$(OBJ_DIR)/glop/parameters.pb.$O
objs/glop/basis_representation.$O: ortools/glop/basis_representation.cc \
ortools/glop/basis_representation.h ortools/base/logging.h \
ortools/base/commandlineflags.h ortools/base/integral_types.h \
ortools/base/log_severity.h ortools/base/logging_export.h \
ortools/base/macros.h ortools/base/vlog_is_on.h \
ortools/glop/lu_factorization.h ortools/glop/markowitz.h \
ortools/base/strong_vector.h ortools/base/int_type.h \
ortools/gen/ortools/glop/parameters.pb.h ortools/glop/status.h \
ortools/lp_data/lp_types.h ortools/base/basictypes.h \
ortools/util/bitset.h ortools/lp_data/permutation.h \
ortools/util/return_macros.h ortools/lp_data/sparse.h \
ortools/lp_data/scattered_vector.h ortools/lp_data/sparse_column.h \
ortools/lp_data/sparse_vector.h ortools/graph/iterators.h \
ortools/util/stats.h ortools/base/timer.h ortools/glop/rank_one_update.h \
ortools/lp_data/lp_utils.h ortools/base/accurate_sum.h \
ortools/base/stl_util.h | $(OBJ_DIR)/glop
$(CCC) $(CFLAGS) -c $(SRC_DIR)$Sortools$Sglop$Sbasis_representation.cc $(OBJ_OUT)$(OBJ_DIR)$Sglop$Sbasis_representation.$O
objs/glop/dual_edge_norms.$O: ortools/glop/dual_edge_norms.cc \
ortools/glop/dual_edge_norms.h ortools/glop/basis_representation.h \
ortools/base/logging.h ortools/base/commandlineflags.h \
ortools/base/integral_types.h ortools/base/log_severity.h \
ortools/base/logging_export.h ortools/base/macros.h \
ortools/base/vlog_is_on.h ortools/glop/lu_factorization.h \
ortools/glop/markowitz.h ortools/base/strong_vector.h \
ortools/base/int_type.h ortools/gen/ortools/glop/parameters.pb.h \
ortools/glop/status.h ortools/lp_data/lp_types.h \
ortools/base/basictypes.h ortools/util/bitset.h \
ortools/lp_data/permutation.h ortools/util/return_macros.h \
ortools/lp_data/sparse.h ortools/lp_data/scattered_vector.h \
ortools/lp_data/sparse_column.h ortools/lp_data/sparse_vector.h \
ortools/graph/iterators.h ortools/util/stats.h ortools/base/timer.h \
ortools/glop/rank_one_update.h ortools/lp_data/lp_utils.h \
ortools/base/accurate_sum.h ortools/lp_data/lp_data.h \
ortools/base/hash.h ortools/util/fp_utils.h | $(OBJ_DIR)/glop
$(CCC) $(CFLAGS) -c $(SRC_DIR)$Sortools$Sglop$Sdual_edge_norms.cc $(OBJ_OUT)$(OBJ_DIR)$Sglop$Sdual_edge_norms.$O
objs/glop/entering_variable.$O: ortools/glop/entering_variable.cc \
ortools/glop/entering_variable.h ortools/glop/basis_representation.h \
ortools/base/logging.h ortools/base/commandlineflags.h \
ortools/base/integral_types.h ortools/base/log_severity.h \
ortools/base/logging_export.h ortools/base/macros.h \
ortools/base/vlog_is_on.h ortools/glop/lu_factorization.h \
ortools/glop/markowitz.h ortools/base/strong_vector.h \
ortools/base/int_type.h ortools/gen/ortools/glop/parameters.pb.h \
ortools/glop/status.h ortools/lp_data/lp_types.h \
ortools/base/basictypes.h ortools/util/bitset.h \
ortools/lp_data/permutation.h ortools/util/return_macros.h \
ortools/lp_data/sparse.h ortools/lp_data/scattered_vector.h \
ortools/lp_data/sparse_column.h ortools/lp_data/sparse_vector.h \
ortools/graph/iterators.h ortools/util/stats.h ortools/base/timer.h \
ortools/glop/rank_one_update.h ortools/lp_data/lp_utils.h \
ortools/base/accurate_sum.h ortools/glop/primal_edge_norms.h \
ortools/glop/update_row.h ortools/glop/variables_info.h \
ortools/lp_data/lp_data.h ortools/base/hash.h ortools/util/fp_utils.h \
ortools/glop/reduced_costs.h ortools/glop/pricing.h \
ortools/port/proto_utils.h | $(OBJ_DIR)/glop
$(CCC) $(CFLAGS) -c $(SRC_DIR)$Sortools$Sglop$Sentering_variable.cc $(OBJ_OUT)$(OBJ_DIR)$Sglop$Sentering_variable.$O
objs/glop/initial_basis.$O: ortools/glop/initial_basis.cc \
ortools/glop/initial_basis.h ortools/lp_data/lp_data.h \
ortools/base/hash.h ortools/base/basictypes.h \
ortools/base/integral_types.h ortools/base/logging.h \
ortools/base/commandlineflags.h ortools/base/log_severity.h \
ortools/base/logging_export.h ortools/base/macros.h \
ortools/base/vlog_is_on.h ortools/base/int_type.h \
ortools/gen/ortools/glop/parameters.pb.h ortools/lp_data/lp_types.h \
ortools/base/strong_vector.h ortools/util/bitset.h \
ortools/lp_data/sparse.h ortools/lp_data/permutation.h \
ortools/util/return_macros.h ortools/lp_data/scattered_vector.h \
ortools/lp_data/sparse_column.h ortools/lp_data/sparse_vector.h \
ortools/graph/iterators.h ortools/util/fp_utils.h \
ortools/glop/markowitz.h ortools/glop/status.h ortools/util/stats.h \
ortools/base/timer.h ortools/lp_data/lp_utils.h \
ortools/base/accurate_sum.h | $(OBJ_DIR)/glop
$(CCC) $(CFLAGS) -c $(SRC_DIR)$Sortools$Sglop$Sinitial_basis.cc $(OBJ_OUT)$(OBJ_DIR)$Sglop$Sinitial_basis.$O
objs/glop/lp_solver.$O: ortools/glop/lp_solver.cc ortools/glop/lp_solver.h \
ortools/gen/ortools/glop/parameters.pb.h ortools/glop/preprocessor.h \
ortools/base/strong_vector.h ortools/base/int_type.h \
ortools/base/macros.h ortools/glop/revised_simplex.h \
ortools/base/integral_types.h ortools/glop/basis_representation.h \
ortools/base/logging.h ortools/base/commandlineflags.h \
ortools/base/log_severity.h ortools/base/logging_export.h \
ortools/base/vlog_is_on.h ortools/glop/lu_factorization.h \
ortools/glop/markowitz.h ortools/glop/status.h \
ortools/lp_data/lp_types.h ortools/base/basictypes.h \
ortools/util/bitset.h ortools/lp_data/permutation.h \
ortools/util/return_macros.h ortools/lp_data/sparse.h \
ortools/lp_data/scattered_vector.h ortools/lp_data/sparse_column.h \
ortools/lp_data/sparse_vector.h ortools/graph/iterators.h \
ortools/util/stats.h ortools/base/timer.h ortools/glop/rank_one_update.h \
ortools/lp_data/lp_utils.h ortools/base/accurate_sum.h \
ortools/glop/dual_edge_norms.h ortools/lp_data/lp_data.h \
ortools/base/hash.h ortools/util/fp_utils.h \
ortools/glop/entering_variable.h ortools/glop/primal_edge_norms.h \
ortools/glop/update_row.h ortools/glop/variables_info.h \
ortools/glop/reduced_costs.h ortools/glop/pricing.h \
ortools/glop/variable_values.h ortools/lp_data/lp_print_utils.h \
ortools/lp_data/sparse_row.h ortools/util/logging.h \
ortools/util/random_engine.h ortools/util/time_limit.h \
ortools/util/running_stat.h ortools/lp_data/matrix_scaler.h \
ortools/lp_data/proto_utils.h \
ortools/gen/ortools/linear_solver/linear_solver.pb.h \
ortools/gen/ortools/util/optional_boolean.pb.h ortools/util/file_util.h \
ortools/base/file.h ortools/base/recordio.h | $(OBJ_DIR)/glop
$(CCC) $(CFLAGS) -c $(SRC_DIR)$Sortools$Sglop$Slp_solver.cc $(OBJ_OUT)$(OBJ_DIR)$Sglop$Slp_solver.$O
objs/glop/lu_factorization.$O: ortools/glop/lu_factorization.cc \
ortools/glop/lu_factorization.h ortools/glop/markowitz.h \
ortools/base/logging.h ortools/base/commandlineflags.h \
ortools/base/integral_types.h ortools/base/log_severity.h \
ortools/base/logging_export.h ortools/base/macros.h \
ortools/base/vlog_is_on.h ortools/base/strong_vector.h \
ortools/base/int_type.h ortools/gen/ortools/glop/parameters.pb.h \
ortools/glop/status.h ortools/lp_data/lp_types.h \
ortools/base/basictypes.h ortools/util/bitset.h \
ortools/lp_data/permutation.h ortools/util/return_macros.h \
ortools/lp_data/sparse.h ortools/lp_data/scattered_vector.h \
ortools/lp_data/sparse_column.h ortools/lp_data/sparse_vector.h \
ortools/graph/iterators.h ortools/util/stats.h ortools/base/timer.h \
ortools/lp_data/lp_utils.h ortools/base/accurate_sum.h | $(OBJ_DIR)/glop
$(CCC) $(CFLAGS) -c $(SRC_DIR)$Sortools$Sglop$Slu_factorization.cc $(OBJ_OUT)$(OBJ_DIR)$Sglop$Slu_factorization.$O
objs/glop/markowitz.$O: ortools/glop/markowitz.cc ortools/glop/markowitz.h \
ortools/base/logging.h ortools/base/commandlineflags.h \
ortools/base/integral_types.h ortools/base/log_severity.h \
ortools/base/logging_export.h ortools/base/macros.h \
ortools/base/vlog_is_on.h ortools/base/strong_vector.h \
ortools/base/int_type.h ortools/gen/ortools/glop/parameters.pb.h \
ortools/glop/status.h ortools/lp_data/lp_types.h \
ortools/base/basictypes.h ortools/util/bitset.h \
ortools/lp_data/permutation.h ortools/util/return_macros.h \
ortools/lp_data/sparse.h ortools/lp_data/scattered_vector.h \
ortools/lp_data/sparse_column.h ortools/lp_data/sparse_vector.h \
ortools/graph/iterators.h ortools/util/stats.h ortools/base/timer.h \
ortools/lp_data/lp_utils.h ortools/base/accurate_sum.h | $(OBJ_DIR)/glop
$(CCC) $(CFLAGS) -c $(SRC_DIR)$Sortools$Sglop$Smarkowitz.cc $(OBJ_OUT)$(OBJ_DIR)$Sglop$Smarkowitz.$O
objs/glop/preprocessor.$O: ortools/glop/preprocessor.cc \
ortools/glop/preprocessor.h ortools/base/strong_vector.h \
ortools/base/int_type.h ortools/base/macros.h \
ortools/gen/ortools/glop/parameters.pb.h ortools/glop/revised_simplex.h \
ortools/base/integral_types.h ortools/glop/basis_representation.h \
ortools/base/logging.h ortools/base/commandlineflags.h \
ortools/base/log_severity.h ortools/base/logging_export.h \
ortools/base/vlog_is_on.h ortools/glop/lu_factorization.h \
ortools/glop/markowitz.h ortools/glop/status.h \
ortools/lp_data/lp_types.h ortools/base/basictypes.h \
ortools/util/bitset.h ortools/lp_data/permutation.h \
ortools/util/return_macros.h ortools/lp_data/sparse.h \
ortools/lp_data/scattered_vector.h ortools/lp_data/sparse_column.h \
ortools/lp_data/sparse_vector.h ortools/graph/iterators.h \
ortools/util/stats.h ortools/base/timer.h ortools/glop/rank_one_update.h \
ortools/lp_data/lp_utils.h ortools/base/accurate_sum.h \
ortools/glop/dual_edge_norms.h ortools/lp_data/lp_data.h \
ortools/base/hash.h ortools/util/fp_utils.h \
ortools/glop/entering_variable.h ortools/glop/primal_edge_norms.h \
ortools/glop/update_row.h ortools/glop/variables_info.h \
ortools/glop/reduced_costs.h ortools/glop/pricing.h \
ortools/glop/variable_values.h ortools/lp_data/lp_print_utils.h \
ortools/lp_data/sparse_row.h ortools/util/logging.h \
ortools/util/random_engine.h ortools/util/time_limit.h \
ortools/util/running_stat.h ortools/lp_data/matrix_scaler.h \
ortools/base/iterator_adaptors.h ortools/lp_data/lp_data_utils.h \
ortools/lp_data/matrix_utils.h | $(OBJ_DIR)/glop
$(CCC) $(CFLAGS) -c $(SRC_DIR)$Sortools$Sglop$Spreprocessor.cc $(OBJ_OUT)$(OBJ_DIR)$Sglop$Spreprocessor.$O
objs/glop/primal_edge_norms.$O: ortools/glop/primal_edge_norms.cc \
ortools/glop/primal_edge_norms.h ortools/glop/basis_representation.h \
ortools/base/logging.h ortools/base/commandlineflags.h \
ortools/base/integral_types.h ortools/base/log_severity.h \
ortools/base/logging_export.h ortools/base/macros.h \
ortools/base/vlog_is_on.h ortools/glop/lu_factorization.h \
ortools/glop/markowitz.h ortools/base/strong_vector.h \
ortools/base/int_type.h ortools/gen/ortools/glop/parameters.pb.h \
ortools/glop/status.h ortools/lp_data/lp_types.h \
ortools/base/basictypes.h ortools/util/bitset.h \
ortools/lp_data/permutation.h ortools/util/return_macros.h \
ortools/lp_data/sparse.h ortools/lp_data/scattered_vector.h \
ortools/lp_data/sparse_column.h ortools/lp_data/sparse_vector.h \
ortools/graph/iterators.h ortools/util/stats.h ortools/base/timer.h \
ortools/glop/rank_one_update.h ortools/lp_data/lp_utils.h \
ortools/base/accurate_sum.h ortools/glop/update_row.h \
ortools/glop/variables_info.h ortools/lp_data/lp_data.h \
ortools/base/hash.h ortools/util/fp_utils.h | $(OBJ_DIR)/glop
$(CCC) $(CFLAGS) -c $(SRC_DIR)$Sortools$Sglop$Sprimal_edge_norms.cc $(OBJ_OUT)$(OBJ_DIR)$Sglop$Sprimal_edge_norms.$O
objs/glop/reduced_costs.$O: ortools/glop/reduced_costs.cc \
ortools/glop/reduced_costs.h ortools/glop/basis_representation.h \
ortools/base/logging.h ortools/base/commandlineflags.h \
ortools/base/integral_types.h ortools/base/log_severity.h \
ortools/base/logging_export.h ortools/base/macros.h \
ortools/base/vlog_is_on.h ortools/glop/lu_factorization.h \
ortools/glop/markowitz.h ortools/base/strong_vector.h \
ortools/base/int_type.h ortools/gen/ortools/glop/parameters.pb.h \
ortools/glop/status.h ortools/lp_data/lp_types.h \
ortools/base/basictypes.h ortools/util/bitset.h \
ortools/lp_data/permutation.h ortools/util/return_macros.h \
ortools/lp_data/sparse.h ortools/lp_data/scattered_vector.h \
ortools/lp_data/sparse_column.h ortools/lp_data/sparse_vector.h \
ortools/graph/iterators.h ortools/util/stats.h ortools/base/timer.h \
ortools/glop/rank_one_update.h ortools/lp_data/lp_utils.h \
ortools/base/accurate_sum.h ortools/glop/pricing.h \
ortools/glop/primal_edge_norms.h ortools/glop/update_row.h \
ortools/glop/variables_info.h ortools/lp_data/lp_data.h \
ortools/base/hash.h ortools/util/fp_utils.h | $(OBJ_DIR)/glop
$(CCC) $(CFLAGS) -c $(SRC_DIR)$Sortools$Sglop$Sreduced_costs.cc $(OBJ_OUT)$(OBJ_DIR)$Sglop$Sreduced_costs.$O
objs/glop/revised_simplex.$O: ortools/glop/revised_simplex.cc \
ortools/glop/revised_simplex.h ortools/base/integral_types.h \
ortools/base/macros.h ortools/glop/basis_representation.h \
ortools/base/logging.h ortools/base/commandlineflags.h \
ortools/base/log_severity.h ortools/base/logging_export.h \
ortools/base/vlog_is_on.h ortools/glop/lu_factorization.h \
ortools/glop/markowitz.h ortools/base/strong_vector.h \
ortools/base/int_type.h ortools/gen/ortools/glop/parameters.pb.h \
ortools/glop/status.h ortools/lp_data/lp_types.h \
ortools/base/basictypes.h ortools/util/bitset.h \
ortools/lp_data/permutation.h ortools/util/return_macros.h \
ortools/lp_data/sparse.h ortools/lp_data/scattered_vector.h \
ortools/lp_data/sparse_column.h ortools/lp_data/sparse_vector.h \
ortools/graph/iterators.h ortools/util/stats.h ortools/base/timer.h \
ortools/glop/rank_one_update.h ortools/lp_data/lp_utils.h \
ortools/base/accurate_sum.h ortools/glop/dual_edge_norms.h \
ortools/lp_data/lp_data.h ortools/base/hash.h ortools/util/fp_utils.h \
ortools/glop/entering_variable.h ortools/glop/primal_edge_norms.h \
ortools/glop/update_row.h ortools/glop/variables_info.h \
ortools/glop/reduced_costs.h ortools/glop/pricing.h \
ortools/glop/variable_values.h ortools/lp_data/lp_print_utils.h \
ortools/lp_data/sparse_row.h ortools/util/logging.h \
ortools/util/random_engine.h ortools/util/time_limit.h \
ortools/util/running_stat.h ortools/glop/initial_basis.h \
ortools/lp_data/matrix_utils.h | $(OBJ_DIR)/glop
$(CCC) $(CFLAGS) -c $(SRC_DIR)$Sortools$Sglop$Srevised_simplex.cc $(OBJ_OUT)$(OBJ_DIR)$Sglop$Srevised_simplex.$O
objs/glop/status.$O: ortools/glop/status.cc ortools/glop/status.h \
ortools/base/logging.h ortools/base/commandlineflags.h \
ortools/base/integral_types.h ortools/base/log_severity.h \
ortools/base/logging_export.h ortools/base/macros.h \
ortools/base/vlog_is_on.h | $(OBJ_DIR)/glop
$(CCC) $(CFLAGS) -c $(SRC_DIR)$Sortools$Sglop$Sstatus.cc $(OBJ_OUT)$(OBJ_DIR)$Sglop$Sstatus.$O
objs/glop/update_row.$O: ortools/glop/update_row.cc \
ortools/glop/update_row.h ortools/glop/basis_representation.h \
ortools/base/logging.h ortools/base/commandlineflags.h \
ortools/base/integral_types.h ortools/base/log_severity.h \
ortools/base/logging_export.h ortools/base/macros.h \
ortools/base/vlog_is_on.h ortools/glop/lu_factorization.h \
ortools/glop/markowitz.h ortools/base/strong_vector.h \
ortools/base/int_type.h ortools/gen/ortools/glop/parameters.pb.h \
ortools/glop/status.h ortools/lp_data/lp_types.h \
ortools/base/basictypes.h ortools/util/bitset.h \
ortools/lp_data/permutation.h ortools/util/return_macros.h \
ortools/lp_data/sparse.h ortools/lp_data/scattered_vector.h \
ortools/lp_data/sparse_column.h ortools/lp_data/sparse_vector.h \
ortools/graph/iterators.h ortools/util/stats.h ortools/base/timer.h \
ortools/glop/rank_one_update.h ortools/lp_data/lp_utils.h \
ortools/base/accurate_sum.h ortools/glop/variables_info.h | $(OBJ_DIR)/glop
$(CCC) $(CFLAGS) -c $(SRC_DIR)$Sortools$Sglop$Supdate_row.cc $(OBJ_OUT)$(OBJ_DIR)$Sglop$Supdate_row.$O
objs/glop/variable_values.$O: ortools/glop/variable_values.cc \
ortools/glop/variable_values.h ortools/glop/basis_representation.h \
ortools/base/logging.h ortools/base/commandlineflags.h \
ortools/base/integral_types.h ortools/base/log_severity.h \
ortools/base/logging_export.h ortools/base/macros.h \
ortools/base/vlog_is_on.h ortools/glop/lu_factorization.h \
ortools/glop/markowitz.h ortools/base/strong_vector.h \
ortools/base/int_type.h ortools/gen/ortools/glop/parameters.pb.h \
ortools/glop/status.h ortools/lp_data/lp_types.h \
ortools/base/basictypes.h ortools/util/bitset.h \
ortools/lp_data/permutation.h ortools/util/return_macros.h \
ortools/lp_data/sparse.h ortools/lp_data/scattered_vector.h \
ortools/lp_data/sparse_column.h ortools/lp_data/sparse_vector.h \
ortools/graph/iterators.h ortools/util/stats.h ortools/base/timer.h \
ortools/glop/rank_one_update.h ortools/lp_data/lp_utils.h \
ortools/base/accurate_sum.h ortools/glop/dual_edge_norms.h \
ortools/lp_data/lp_data.h ortools/base/hash.h ortools/util/fp_utils.h \
ortools/glop/pricing.h ortools/glop/variables_info.h | $(OBJ_DIR)/glop
$(CCC) $(CFLAGS) -c $(SRC_DIR)$Sortools$Sglop$Svariable_values.cc $(OBJ_OUT)$(OBJ_DIR)$Sglop$Svariable_values.$O
objs/glop/variables_info.$O: ortools/glop/variables_info.cc \
ortools/glop/variables_info.h ortools/lp_data/lp_types.h \
ortools/base/basictypes.h ortools/base/integral_types.h \
ortools/base/logging.h ortools/base/commandlineflags.h \
ortools/base/log_severity.h ortools/base/logging_export.h \
ortools/base/macros.h ortools/base/vlog_is_on.h ortools/base/int_type.h \
ortools/base/strong_vector.h ortools/util/bitset.h \
ortools/lp_data/sparse.h ortools/lp_data/permutation.h \
ortools/util/return_macros.h ortools/lp_data/scattered_vector.h \
ortools/lp_data/sparse_column.h ortools/lp_data/sparse_vector.h \
ortools/graph/iterators.h | $(OBJ_DIR)/glop
$(CCC) $(CFLAGS) -c $(SRC_DIR)$Sortools$Sglop$Svariables_info.cc $(OBJ_OUT)$(OBJ_DIR)$Sglop$Svariables_info.$O
ortools/glop/parameters.proto: ;
$(GEN_DIR)/ortools/glop/parameters.pb.cc: \
$(SRC_DIR)/ortools/glop/parameters.proto | $(GEN_DIR)/ortools/glop
$(PROTOC) --experimental_allow_proto3_optional --proto_path=$(INC_DIR) $(PROTOBUF_PROTOC_INC) --cpp_out=$(GEN_PATH) $(SRC_DIR)/ortools/glop/parameters.proto
$(GEN_DIR)/ortools/glop/parameters.pb.h: \