-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
6001 lines (4796 loc) · 303 KB
/
Makefile
File metadata and controls
6001 lines (4796 loc) · 303 KB
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 4.1
# Default target executed when no arguments are given to make.
default_target: all
.PHONY : default_target
# Allow only one "make -f Makefile2" at a time, but pass parallelism.
.NOTPARALLEL:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Disable VCS-based implicit rules.
% : %,v
# Disable VCS-based implicit rules.
% : RCS/%
# Disable VCS-based implicit rules.
% : RCS/%,v
# Disable VCS-based implicit rules.
% : SCCS/s.%
# Disable VCS-based implicit rules.
% : s.%
.SUFFIXES: .hpux_make_needs_suffix_list
# Command-line flag to silence nested $(MAKE).
$(VERBOSE)MAKESILENT = -s
#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 = /opt/homebrew/bin/cmake
# The command to remove a file.
RM = /opt/homebrew/bin/cmake -E rm -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /Users/bengamble/FasterAPI
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /Users/bengamble/FasterAPI
#=============================================================================
# Targets provided globally by CMake.
# Special rule for the target test
test:
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running tests..."
/opt/homebrew/bin/ctest $(ARGS)
.PHONY : test
# Special rule for the target test
test/fast: test
.PHONY : test/fast
# Special rule for the target edit_cache
edit_cache:
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..."
/opt/homebrew/bin/ccmake -S$(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 rebuild_cache
rebuild_cache:
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..."
/opt/homebrew/bin/cmake --regenerate-during-build -S$(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
# 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\" \"simdjson_Development\""
.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 install
install: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..."
/opt/homebrew/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..."
/opt/homebrew/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..."
/opt/homebrew/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
.PHONY : install/local
# Special rule for the target install/local
install/local/fast: preinstall/fast
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..."
/opt/homebrew/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
.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..."
/opt/homebrew/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
.PHONY : install/strip
# Special rule for the target install/strip
install/strip/fast: preinstall/fast
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..."
/opt/homebrew/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
.PHONY : install/strip/fast
# The main all target
all: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /Users/bengamble/FasterAPI/CMakeFiles /Users/bengamble/FasterAPI//CMakeFiles/progress.marks
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all
$(CMAKE_COMMAND) -E cmake_progress_start /Users/bengamble/FasterAPI/CMakeFiles 0
.PHONY : all
# The main clean target
clean:
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 clean
.PHONY : clean
# The main clean target
clean/fast: clean
.PHONY : clean/fast
# Prepare targets for installation.
preinstall: all
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall
.PHONY : preinstall
# Prepare targets for installation.
preinstall/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall
.PHONY : preinstall/fast
# clear depends
depend:
$(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
.PHONY : depend
#=============================================================================
# Target rules for targets named fasterapi_pg
# Build rule for target.
fasterapi_pg: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 fasterapi_pg
.PHONY : fasterapi_pg
# fast build rule for target.
fasterapi_pg/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/fasterapi_pg.dir/build.make CMakeFiles/fasterapi_pg.dir/build
.PHONY : fasterapi_pg/fast
#=============================================================================
# Target rules for targets named fasterapi_http
# Build rule for target.
fasterapi_http: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 fasterapi_http
.PHONY : fasterapi_http
# fast build rule for target.
fasterapi_http/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/fasterapi_http.dir/build.make CMakeFiles/fasterapi_http.dir/build
.PHONY : fasterapi_http/fast
#=============================================================================
# Target rules for targets named test_event_loop_echo
# Build rule for target.
test_event_loop_echo: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 test_event_loop_echo
.PHONY : test_event_loop_echo
# fast build rule for target.
test_event_loop_echo/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_event_loop_echo.dir/build.make CMakeFiles/test_event_loop_echo.dir/build
.PHONY : test_event_loop_echo/fast
#=============================================================================
# Target rules for targets named test_tcp_listener_echo
# Build rule for target.
test_tcp_listener_echo: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 test_tcp_listener_echo
.PHONY : test_tcp_listener_echo
# fast build rule for target.
test_tcp_listener_echo/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_tcp_listener_echo.dir/build.make CMakeFiles/test_tcp_listener_echo.dir/build
.PHONY : test_tcp_listener_echo/fast
#=============================================================================
# Target rules for targets named test_http1_native
# Build rule for target.
test_http1_native: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 test_http1_native
.PHONY : test_http1_native
# fast build rule for target.
test_http1_native/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_http1_native.dir/build.make CMakeFiles/test_http1_native.dir/build
.PHONY : test_http1_native/fast
#=============================================================================
# Target rules for targets named test_unified_server
# Build rule for target.
test_unified_server: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 test_unified_server
.PHONY : test_unified_server
# fast build rule for target.
test_unified_server/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_unified_server.dir/build.make CMakeFiles/test_unified_server.dir/build
.PHONY : test_unified_server/fast
#=============================================================================
# Target rules for targets named test_router
# Build rule for target.
test_router: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 test_router
.PHONY : test_router
# fast build rule for target.
test_router/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_router.dir/build.make CMakeFiles/test_router.dir/build
.PHONY : test_router/fast
#=============================================================================
# Target rules for targets named test_parameter_extractor
# Build rule for target.
test_parameter_extractor: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 test_parameter_extractor
.PHONY : test_parameter_extractor
# fast build rule for target.
test_parameter_extractor/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_parameter_extractor.dir/build.make CMakeFiles/test_parameter_extractor.dir/build
.PHONY : test_parameter_extractor/fast
#=============================================================================
# Target rules for targets named bench_router
# Build rule for target.
bench_router: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 bench_router
.PHONY : bench_router
# fast build rule for target.
bench_router/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/bench_router.dir/build.make CMakeFiles/bench_router.dir/build
.PHONY : bench_router/fast
#=============================================================================
# Target rules for targets named test_hpack
# Build rule for target.
test_hpack: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 test_hpack
.PHONY : test_hpack
# fast build rule for target.
test_hpack/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_hpack.dir/build.make CMakeFiles/test_hpack.dir/build
.PHONY : test_hpack/fast
#=============================================================================
# Target rules for targets named test_qpack_static_table
# Build rule for target.
test_qpack_static_table: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 test_qpack_static_table
.PHONY : test_qpack_static_table
# fast build rule for target.
test_qpack_static_table/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_qpack_static_table.dir/build.make CMakeFiles/test_qpack_static_table.dir/build
.PHONY : test_qpack_static_table/fast
#=============================================================================
# Target rules for targets named test_qpack_dynamic_table
# Build rule for target.
test_qpack_dynamic_table: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 test_qpack_dynamic_table
.PHONY : test_qpack_dynamic_table
# fast build rule for target.
test_qpack_dynamic_table/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_qpack_dynamic_table.dir/build.make CMakeFiles/test_qpack_dynamic_table.dir/build
.PHONY : test_qpack_dynamic_table/fast
#=============================================================================
# Target rules for targets named bench_hpack
# Build rule for target.
bench_hpack: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 bench_hpack
.PHONY : bench_hpack
# fast build rule for target.
bench_hpack/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/bench_hpack.dir/build.make CMakeFiles/bench_hpack.dir/build
.PHONY : bench_hpack/fast
#=============================================================================
# Target rules for targets named test_http1_parser
# Build rule for target.
test_http1_parser: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 test_http1_parser
.PHONY : test_http1_parser
# fast build rule for target.
test_http1_parser/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_http1_parser.dir/build.make CMakeFiles/test_http1_parser.dir/build
.PHONY : test_http1_parser/fast
#=============================================================================
# Target rules for targets named bench_http1_parser
# Build rule for target.
bench_http1_parser: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 bench_http1_parser
.PHONY : bench_http1_parser
# fast build rule for target.
bench_http1_parser/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/bench_http1_parser.dir/build.make CMakeFiles/bench_http1_parser.dir/build
.PHONY : bench_http1_parser/fast
#=============================================================================
# Target rules for targets named test_http3_parser
# Build rule for target.
test_http3_parser: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 test_http3_parser
.PHONY : test_http3_parser
# fast build rule for target.
test_http3_parser/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_http3_parser.dir/build.make CMakeFiles/test_http3_parser.dir/build
.PHONY : test_http3_parser/fast
#=============================================================================
# Target rules for targets named test_http3_performance
# Build rule for target.
test_http3_performance: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 test_http3_performance
.PHONY : test_http3_performance
# fast build rule for target.
test_http3_performance/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_http3_performance.dir/build.make CMakeFiles/test_http3_performance.dir/build
.PHONY : test_http3_performance/fast
#=============================================================================
# Target rules for targets named test_http3_integration
# Build rule for target.
test_http3_integration: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 test_http3_integration
.PHONY : test_http3_integration
# fast build rule for target.
test_http3_integration/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_http3_integration.dir/build.make CMakeFiles/test_http3_integration.dir/build
.PHONY : test_http3_integration/fast
#=============================================================================
# Target rules for targets named test_http3_stress
# Build rule for target.
test_http3_stress: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 test_http3_stress
.PHONY : test_http3_stress
# fast build rule for target.
test_http3_stress/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_http3_stress.dir/build.make CMakeFiles/test_http3_stress.dir/build
.PHONY : test_http3_stress/fast
#=============================================================================
# Target rules for targets named test_http3_interop
# Build rule for target.
test_http3_interop: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 test_http3_interop
.PHONY : test_http3_interop
# fast build rule for target.
test_http3_interop/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_http3_interop.dir/build.make CMakeFiles/test_http3_interop.dir/build
.PHONY : test_http3_interop/fast
#=============================================================================
# Target rules for targets named test_http3_unified_integration
# Build rule for target.
test_http3_unified_integration: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 test_http3_unified_integration
.PHONY : test_http3_unified_integration
# fast build rule for target.
test_http3_unified_integration/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_http3_unified_integration.dir/build.make CMakeFiles/test_http3_unified_integration.dir/build
.PHONY : test_http3_unified_integration/fast
#=============================================================================
# Target rules for targets named test_app_http3_e2e
# Build rule for target.
test_app_http3_e2e: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 test_app_http3_e2e
.PHONY : test_app_http3_e2e
# fast build rule for target.
test_app_http3_e2e/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_app_http3_e2e.dir/build.make CMakeFiles/test_app_http3_e2e.dir/build
.PHONY : test_app_http3_e2e/fast
#=============================================================================
# Target rules for targets named test_app_destructor
# Build rule for target.
test_app_destructor: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 test_app_destructor
.PHONY : test_app_destructor
# fast build rule for target.
test_app_destructor/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_app_destructor.dir/build.make CMakeFiles/test_app_destructor.dir/build
.PHONY : test_app_destructor/fast
#=============================================================================
# Target rules for targets named test_multi_protocol_verbs
# Build rule for target.
test_multi_protocol_verbs: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 test_multi_protocol_verbs
.PHONY : test_multi_protocol_verbs
# fast build rule for target.
test_multi_protocol_verbs/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_multi_protocol_verbs.dir/build.make CMakeFiles/test_multi_protocol_verbs.dir/build
.PHONY : test_multi_protocol_verbs/fast
#=============================================================================
# Target rules for targets named test_app_crash_debug
# Build rule for target.
test_app_crash_debug: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 test_app_crash_debug
.PHONY : test_app_crash_debug
# fast build rule for target.
test_app_crash_debug/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_app_crash_debug.dir/build.make CMakeFiles/test_app_crash_debug.dir/build
.PHONY : test_app_crash_debug/fast
#=============================================================================
# Target rules for targets named test_webrtc
# Build rule for target.
test_webrtc: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 test_webrtc
.PHONY : test_webrtc
# fast build rule for target.
test_webrtc/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_webrtc.dir/build.make CMakeFiles/test_webrtc.dir/build
.PHONY : test_webrtc/fast
#=============================================================================
# Target rules for targets named test_webrtc_media
# Build rule for target.
test_webrtc_media: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 test_webrtc_media
.PHONY : test_webrtc_media
# fast build rule for target.
test_webrtc_media/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_webrtc_media.dir/build.make CMakeFiles/test_webrtc_media.dir/build
.PHONY : test_webrtc_media/fast
#=============================================================================
# Target rules for targets named test_h2_server_push
# Build rule for target.
test_h2_server_push: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 test_h2_server_push
.PHONY : test_h2_server_push
# fast build rule for target.
test_h2_server_push/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_h2_server_push.dir/build.make CMakeFiles/test_h2_server_push.dir/build
.PHONY : test_h2_server_push/fast
#=============================================================================
# Target rules for targets named test_native_types
# Build rule for target.
test_native_types: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 test_native_types
.PHONY : test_native_types
# fast build rule for target.
test_native_types/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_native_types.dir/build.make CMakeFiles/test_native_types.dir/build
.PHONY : test_native_types/fast
#=============================================================================
# Target rules for targets named test_lockfree_queue
# Build rule for target.
test_lockfree_queue: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 test_lockfree_queue
.PHONY : test_lockfree_queue
# fast build rule for target.
test_lockfree_queue/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_lockfree_queue.dir/build.make CMakeFiles/test_lockfree_queue.dir/build
.PHONY : test_lockfree_queue/fast
#=============================================================================
# Target rules for targets named test_pyobject_pool
# Build rule for target.
test_pyobject_pool: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 test_pyobject_pool
.PHONY : test_pyobject_pool
# fast build rule for target.
test_pyobject_pool/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_pyobject_pool.dir/build.make CMakeFiles/test_pyobject_pool.dir/build
.PHONY : test_pyobject_pool/fast
#=============================================================================
# Target rules for targets named test_zerocopy_response
# Build rule for target.
test_zerocopy_response: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 test_zerocopy_response
.PHONY : test_zerocopy_response
# fast build rule for target.
test_zerocopy_response/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_zerocopy_response.dir/build.make CMakeFiles/test_zerocopy_response.dir/build
.PHONY : test_zerocopy_response/fast
#=============================================================================
# Target rules for targets named test_coro_task
# Build rule for target.
test_coro_task: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 test_coro_task
.PHONY : test_coro_task
# fast build rule for target.
test_coro_task/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_coro_task.dir/build.make CMakeFiles/test_coro_task.dir/build
.PHONY : test_coro_task/fast
#=============================================================================
# Target rules for targets named bench_pure_cpp
# Build rule for target.
bench_pure_cpp: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 bench_pure_cpp
.PHONY : bench_pure_cpp
# fast build rule for target.
bench_pure_cpp/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/bench_pure_cpp.dir/build.make CMakeFiles/bench_pure_cpp.dir/build
.PHONY : bench_pure_cpp/fast
#=============================================================================
# Target rules for targets named bench_techempower_cpp
# Build rule for target.
bench_techempower_cpp: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 bench_techempower_cpp
.PHONY : bench_techempower_cpp
# fast build rule for target.
bench_techempower_cpp/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/bench_techempower_cpp.dir/build.make CMakeFiles/bench_techempower_cpp.dir/build
.PHONY : bench_techempower_cpp/fast
#=============================================================================
# Target rules for targets named bench_techempower_concurrent
# Build rule for target.
bench_techempower_concurrent: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 bench_techempower_concurrent
.PHONY : bench_techempower_concurrent
# fast build rule for target.
bench_techempower_concurrent/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/bench_techempower_concurrent.dir/build.make CMakeFiles/bench_techempower_concurrent.dir/build
.PHONY : bench_techempower_concurrent/fast
#=============================================================================
# Target rules for targets named 1mrc_cpp_server
# Build rule for target.
1mrc_cpp_server: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 1mrc_cpp_server
.PHONY : 1mrc_cpp_server
# fast build rule for target.
1mrc_cpp_server/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/1mrc_cpp_server.dir/build.make CMakeFiles/1mrc_cpp_server.dir/build
.PHONY : 1mrc_cpp_server/fast
#=============================================================================
# Target rules for targets named 1mrc_async_server
# Build rule for target.
1mrc_async_server: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 1mrc_async_server
.PHONY : 1mrc_async_server
# fast build rule for target.
1mrc_async_server/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/1mrc_async_server.dir/build.make CMakeFiles/1mrc_async_server.dir/build
.PHONY : 1mrc_async_server/fast
#=============================================================================
# Target rules for targets named 1mrc_native_lockfree
# Build rule for target.
1mrc_native_lockfree: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 1mrc_native_lockfree
.PHONY : 1mrc_native_lockfree
# fast build rule for target.
1mrc_native_lockfree/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/1mrc_native_lockfree.dir/build.make CMakeFiles/1mrc_native_lockfree.dir/build
.PHONY : 1mrc_native_lockfree/fast
#=============================================================================
# Target rules for targets named bench_gil_strategies
# Build rule for target.
bench_gil_strategies: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 bench_gil_strategies
.PHONY : bench_gil_strategies
# fast build rule for target.
bench_gil_strategies/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/bench_gil_strategies.dir/build.make CMakeFiles/bench_gil_strategies.dir/build
.PHONY : bench_gil_strategies/fast
#=============================================================================
# Target rules for targets named bench_queue_performance
# Build rule for target.
bench_queue_performance: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 bench_queue_performance
.PHONY : bench_queue_performance
# fast build rule for target.
bench_queue_performance/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/bench_queue_performance.dir/build.make CMakeFiles/bench_queue_performance.dir/build
.PHONY : bench_queue_performance/fast
#=============================================================================
# Target rules for targets named fasterapi_mcp
# Build rule for target.
fasterapi_mcp: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 fasterapi_mcp
.PHONY : fasterapi_mcp
# fast build rule for target.
fasterapi_mcp/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/fasterapi_mcp.dir/build.make CMakeFiles/fasterapi_mcp.dir/build
.PHONY : fasterapi_mcp/fast
#=============================================================================
# Target rules for targets named test_mcp_protocol
# Build rule for target.
test_mcp_protocol: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 test_mcp_protocol
.PHONY : test_mcp_protocol
# fast build rule for target.
test_mcp_protocol/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_mcp_protocol.dir/build.make CMakeFiles/test_mcp_protocol.dir/build
.PHONY : test_mcp_protocol/fast
#=============================================================================
# Target rules for targets named test_mcp_transport
# Build rule for target.
test_mcp_transport: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 test_mcp_transport
.PHONY : test_mcp_transport
# fast build rule for target.
test_mcp_transport/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_mcp_transport.dir/build.make CMakeFiles/test_mcp_transport.dir/build
.PHONY : test_mcp_transport/fast
#=============================================================================
# Target rules for targets named hello_world
# Build rule for target.
hello_world: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 hello_world
.PHONY : hello_world
# fast build rule for target.
hello_world/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/hello_world.dir/build.make CMakeFiles/hello_world.dir/build
.PHONY : hello_world/fast
#=============================================================================
# Target rules for targets named simple_test
# Build rule for target.
simple_test: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 simple_test
.PHONY : simple_test
# fast build rule for target.
simple_test/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/simple_test.dir/build.make CMakeFiles/simple_test.dir/build
.PHONY : simple_test/fast
#=============================================================================
# Target rules for targets named cpp_app_demo
# Build rule for target.
cpp_app_demo: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 cpp_app_demo
.PHONY : cpp_app_demo
# fast build rule for target.
cpp_app_demo/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/cpp_app_demo.dir/build.make CMakeFiles/cpp_app_demo.dir/build
.PHONY : cpp_app_demo/fast
#=============================================================================
# Target rules for targets named pure_cpp_server
# Build rule for target.
pure_cpp_server: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 pure_cpp_server
.PHONY : pure_cpp_server
# fast build rule for target.
pure_cpp_server/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/pure_cpp_server.dir/build.make CMakeFiles/pure_cpp_server.dir/build
.PHONY : pure_cpp_server/fast
#=============================================================================
# Target rules for targets named test_pure_cpp_websocket_server
# Build rule for target.
test_pure_cpp_websocket_server: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 test_pure_cpp_websocket_server
.PHONY : test_pure_cpp_websocket_server
# fast build rule for target.
test_pure_cpp_websocket_server/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_pure_cpp_websocket_server.dir/build.make CMakeFiles/test_pure_cpp_websocket_server.dir/build
.PHONY : test_pure_cpp_websocket_server/fast
#=============================================================================
# Target rules for targets named http2
# Build rule for target.
http2: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 http2
.PHONY : http2
# fast build rule for target.
http2/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/http2.dir/build.make CMakeFiles/http2.dir/build
.PHONY : http2/fast
#=============================================================================
# Target rules for targets named gtest_ring_buffer
# Build rule for target.
gtest_ring_buffer: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 gtest_ring_buffer
.PHONY : gtest_ring_buffer
# fast build rule for target.
gtest_ring_buffer/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/gtest_ring_buffer.dir/build.make CMakeFiles/gtest_ring_buffer.dir/build
.PHONY : gtest_ring_buffer/fast
#=============================================================================
# Target rules for targets named gtest_lockfree_queue
# Build rule for target.
gtest_lockfree_queue: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 gtest_lockfree_queue
.PHONY : gtest_lockfree_queue
# fast build rule for target.
gtest_lockfree_queue/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/gtest_lockfree_queue.dir/build.make CMakeFiles/gtest_lockfree_queue.dir/build
.PHONY : gtest_lockfree_queue/fast
#=============================================================================
# Target rules for targets named gtest_event_loop
# Build rule for target.
gtest_event_loop: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 gtest_event_loop
.PHONY : gtest_event_loop
# fast build rule for target.
gtest_event_loop/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/gtest_event_loop.dir/build.make CMakeFiles/gtest_event_loop.dir/build
.PHONY : gtest_event_loop/fast
#=============================================================================
# Target rules for targets named gtest_tcp_socket
# Build rule for target.
gtest_tcp_socket: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 gtest_tcp_socket
.PHONY : gtest_tcp_socket
# fast build rule for target.
gtest_tcp_socket/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/gtest_tcp_socket.dir/build.make CMakeFiles/gtest_tcp_socket.dir/build
.PHONY : gtest_tcp_socket/fast
#=============================================================================
# Target rules for targets named gtest_router
# Build rule for target.
gtest_router: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 gtest_router
.PHONY : gtest_router
# fast build rule for target.
gtest_router/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/gtest_router.dir/build.make CMakeFiles/gtest_router.dir/build
.PHONY : gtest_router/fast
#=============================================================================
# Target rules for targets named gtest_http1_parser
# Build rule for target.
gtest_http1_parser: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 gtest_http1_parser
.PHONY : gtest_http1_parser
# fast build rule for target.
gtest_http1_parser/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/gtest_http1_parser.dir/build.make CMakeFiles/gtest_http1_parser.dir/build
.PHONY : gtest_http1_parser/fast
#=============================================================================
# Target rules for targets named gtest_http2_frame
# Build rule for target.
gtest_http2_frame: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 gtest_http2_frame
.PHONY : gtest_http2_frame
# fast build rule for target.
gtest_http2_frame/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/gtest_http2_frame.dir/build.make CMakeFiles/gtest_http2_frame.dir/build
.PHONY : gtest_http2_frame/fast
#=============================================================================
# Target rules for targets named gtest_websocket
# Build rule for target.
gtest_websocket: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 gtest_websocket
.PHONY : gtest_websocket
# fast build rule for target.
gtest_websocket/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/gtest_websocket.dir/build.make CMakeFiles/gtest_websocket.dir/build
.PHONY : gtest_websocket/fast
#=============================================================================
# Target rules for targets named gtest_webtransport
# Build rule for target.
gtest_webtransport: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 gtest_webtransport
.PHONY : gtest_webtransport
# fast build rule for target.
gtest_webtransport/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/gtest_webtransport.dir/build.make CMakeFiles/gtest_webtransport.dir/build
.PHONY : gtest_webtransport/fast
#=============================================================================
# Target rules for targets named gtest_static_files
# Build rule for target.
gtest_static_files: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 gtest_static_files
.PHONY : gtest_static_files
# fast build rule for target.
gtest_static_files/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/gtest_static_files.dir/build.make CMakeFiles/gtest_static_files.dir/build
.PHONY : gtest_static_files/fast
#=============================================================================
# Target rules for targets named gtest_graceful_shutdown
# Build rule for target.
gtest_graceful_shutdown: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 gtest_graceful_shutdown
.PHONY : gtest_graceful_shutdown
# fast build rule for target.
gtest_graceful_shutdown/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/gtest_graceful_shutdown.dir/build.make CMakeFiles/gtest_graceful_shutdown.dir/build
.PHONY : gtest_graceful_shutdown/fast
#=============================================================================
# Target rules for targets named gbench_ring_buffer
# Build rule for target.
gbench_ring_buffer: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 gbench_ring_buffer
.PHONY : gbench_ring_buffer
# fast build rule for target.
gbench_ring_buffer/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/gbench_ring_buffer.dir/build.make CMakeFiles/gbench_ring_buffer.dir/build
.PHONY : gbench_ring_buffer/fast
#=============================================================================
# Target rules for targets named gbench_queue
# Build rule for target.
gbench_queue: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 gbench_queue
.PHONY : gbench_queue
# fast build rule for target.
gbench_queue/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/gbench_queue.dir/build.make CMakeFiles/gbench_queue.dir/build
.PHONY : gbench_queue/fast
#=============================================================================
# Target rules for targets named simdjson
# Build rule for target.
simdjson: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 simdjson
.PHONY : simdjson