-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
Copy pathMakefile.am
3024 lines (2632 loc) · 112 KB
/
Makefile.am
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
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License
# Add 'subdir-objects' to build objects in respective subdirectories
# which is necessary for dealing with naming conflicts, i.e,,
# master/http.cpp and slave/http.cpp.
AUTOMAKE_OPTIONS = subdir-objects
MESOS_BUILD_DIR=@abs_top_builddir@
include ../3rdparty/versions.am
# TODO(charles): Move these into an included automakefile and have
# them include $(top_builddir) as appropriate.
BOOST = 3rdparty/boost-$(BOOST_VERSION)
CONCURRENTQUEUE = 3rdparty/concurrentqueue-$(CONCURRENTQUEUE_VERSION)
CSI_V0 = 3rdparty/csi-$(CSI_V0_VERSION)
CSI_V1 = 3rdparty/csi-$(CSI_V1_VERSION)
ELFIO = 3rdparty/elfio-$(ELFIO_VERSION)
GLOG = 3rdparty/glog-$(GLOG_VERSION)
GMOCK = $(GOOGLETEST)/googlemock
GOOGLETEST = 3rdparty/googletest-release-$(GOOGLETEST_VERSION)
GRPC = 3rdparty/grpc-$(GRPC_VERSION)
GTEST = $(GOOGLETEST)/googletest
JEMALLOC = 3rdparty/jemalloc-$(JEMALLOC_VERSION)
LEVELDB = 3rdparty/leveldb-$(LEVELDB_VERSION)
LIBARCHIVE = 3rdparty/libarchive-$(LIBARCHIVE_VERSION)
LIBPROCESS = 3rdparty/libprocess
LIBSECCOMP = 3rdparty/libseccomp-$(LIBSECCOMP_VERSION)
NVML = 3rdparty/nvml-$(NVML_VERSION)
PICOJSON = 3rdparty/picojson-$(PICOJSON_VERSION)
PIP = 3rdparty/pip-$(PIP_VERSION)
PROTOBUF = 3rdparty/protobuf-$(PROTOBUF_VERSION)
RAPIDJSON = 3rdparty/rapidjson-$(RAPIDJSON_VERSION)
SETUPTOOLS = 3rdparty/setuptools-$(SETUPTOOLS_VERSION)
STOUT = 3rdparty/stout
WHEEL = 3rdparty/wheel-$(WHEEL_VERSION)
ZOOKEEPER = 3rdparty/zookeeper-$(ZOOKEEPER_VERSION)/src/c
ZOOKEEPER_JAR = 3rdparty/zookeeper-$(ZOOKEEPER_VERSION)/zookeeper-$(ZOOKEEPER_VERSION).jar
# Unfortunatley, 'pkglibexecdir' and 'pkgsysconfdir' are not set
# before automake 1.11, so we need to set them manually (until we in
# the future assume an automake version).
pkglibexecdir = $(libexecdir)/$(PACKAGE)
pkgsysconfdir = $(sysconfdir)/$(PACKAGE)
# Directories to optionally install test binaries and libraries.
testlibexecdir = $(pkglibexecdir)/tests
# Directory where Mesos modules are installed.
pkgmoduledir = $(pkglibdir)/modules
relative_pkgmoduledir = $(PACKAGE)/modules
# Initialize variables here so we can use += operator everywhere else.
lib_LTLIBRARIES =
pkgmodule_LTLIBRARIES =
noinst_LTLIBRARIES =
sbin_PROGRAMS =
bin_PROGRAMS =
pkglibexec_PROGRAMS =
dist_bin_SCRIPTS =
dist_pkglibexec_SCRIPTS =
nobase_dist_pkgdata_DATA =
nodist_sbin_SCRIPTS =
pkgsysconf_DATA =
check_PROGRAMS =
dist_check_SCRIPTS =
check_SCRIPTS =
BUILT_SOURCES =
CLEANFILES =
EXTRA_DIST =
PHONY_TARGETS =
LDADD =
AM_LDFLAGS =
if DISABLE_LIBTOOL_WRAPPERS
# This is used to force libtool to generate executables instead of wrapper
# scripts. A wrapper script might trigger relinking, which takes quite a while
# on slow machines, thus causing failure of tests.
# NOTE: Disabling libtool wrapper should only be used when building a mesos to
# be tested within the build tree, see `info libtool` for details.
AM_LDFLAGS += -no-install
endif
# Use -Wl,--as-needed to AM_LDFLAGS since we link against all the
# libraries programs may depend upon, not the exact one. --as-needed
# causes the linker to only link to the ones a program actually uses,
# not the full list on the command line.
if OS_LINUX
AM_LDFLAGS += -Wl,--as-needed
endif
# Add compiler and linker flags for pthreads.
AM_CXXFLAGS = $(PTHREAD_CFLAGS)
# Enable common (and some language specific) warnings.
AM_CXXFLAGS += -Wall
# Warn when a comparison is made between signed and unsigned values.
AM_CXXFLAGS += -Wsign-compare
# Warn about use of format functions that can produce security issues.
AM_CXXFLAGS += -Wformat-security
# We will also have much more hardened/secured binaries and libraries.
if ENABLE_HARDENING
# Produce position independent executables so that we better take advantage of ASLR.
AM_LDFLAGS += -pie
# Protect many of the functions with stack guards
# (either -fstack-protector-strong or -fstack-protector depending on compiler support).
AM_CXXFLAGS += @STACK_PROTECTOR@
# Produce position independent code when appropriate.
AM_CXXFLAGS += -fPIC -fPIE
endif
AM_LIBS = $(PTHREAD_LIBS)
# Setup CPPFLAGS that are used for most source files.
MESOS_CPPFLAGS = $(AM_CPPFLAGS)
MESOS_CPPFLAGS += @WERROR@
MESOS_CPPFLAGS += -DLIBDIR=\"$(libdir)\"
MESOS_CPPFLAGS += -DPKGLIBEXECDIR=\"$(pkglibexecdir)\"
MESOS_CPPFLAGS += -DPKGDATADIR=\"$(pkgdatadir)\"
MESOS_CPPFLAGS += -DPKGMODULEDIR=\"$(pkgmoduledir)\"
MESOS_CPPFLAGS += -I$(top_srcdir)/include
MESOS_CPPFLAGS += -I../include
# Protobuf headers that depend on mesos.pb.h need this.
MESOS_CPPFLAGS += -I../include/mesos
# Set up include paths for the protocol buffer compiler.
PROTOCFLAGS = -I$(top_srcdir)/include -I$(srcdir) -I../$(CSI_V0) -I../$(CSI_V1)
# Header only dependencies will be ignored for --disable-bundled.
#
# For non-convenience libraries we need to link them in to make the shared
# library each time. (Currently, we don't support platforms where this is not
# possible.)
# NOTE: PicoJson requires __STDC_FORMAT_MACROS to be defined before importing
# 'inttypes.h'. Since other libraries may also import this header, it must
# be globally defined so that PicoJson has access to the macros, regardless
# of the order of inclusion.
MESOS_CPPFLAGS += -D__STDC_FORMAT_MACROS
if WITH_BUNDLED_BOOST
MESOS_CPPFLAGS += -I../$(BOOST)
endif
if WITH_BUNDLED_CONCURRENTQUEUE
MESOS_CPPFLAGS += -I../$(CONCURRENTQUEUE)
endif
if WITH_BUNDLED_ELFIO
MESOS_CPPFLAGS += -I../$(ELFIO)
endif
if WITH_BUNDLED_GLOG
MESOS_CPPFLAGS += -I../$(GLOG)/src
LIB_GLOG = ../$(GLOG)/libglog.la
else
LIB_GLOG = -lglog
LDADD += -lglog
endif
if !ENABLE_SSL
GRPC_VARIANT = _unsecure
endif
if WITH_BUNDLED_GRPC
MESOS_CPPFLAGS += -I../$(GRPC)/include
LIB_GRPC = ../$(GRPC)/libs/opt/libgrpc++$(GRPC_VARIANT).a \
../$(GRPC)/libs/opt/libgrpc$(GRPC_VARIANT).a \
../$(GRPC)/libs/opt/libgpr.a
GRPC_CPP_PLUGIN = ../$(GRPC)/bins/opt/grpc_cpp_plugin
else
LIB_GRPC = -lgrpc++$(GRPC_VARIANT) -lgrpc$(GRPC_VARIANT) -lgpr
GRPC_CPP_PLUGIN = @GRPC_CXX_PLUGIN@
endif
if WITH_BUNDLED_JEMALLOC
# TODO(bennoe): We could call `jemalloc-conf --libs` to get the required
# libs without hardcoding `-ldl`, but then a version bump could introduce
# additional dependencies without us being aware of it.
LIB_JEMALLOC = ../$(JEMALLOC)/lib/libjemalloc_pic.a -ldl
else
LIB_JEMALLOC = $(if $(WITH_JEMALLOC),\
-L$(WITH_JEMALLOC)/lib -ljemalloc -ldl,\
-ljemalloc -ldl)
endif
if WITH_BUNDLED_LEVELDB
MESOS_CPPFLAGS += -I../$(LEVELDB)/include
# We need to directly include the leveldb library in order to avoid
# the installed libmesos.la file to include leveldb in
# 'dependency_libs' (via '-L../3rdparty/leveldb -lleveldb').
LIB_LEVELDB = ../$(LEVELDB)/out-static/libleveldb.a
else
LIB_LEVELDB = -lleveldb
LDADD += -lleveldb
endif
if WITH_BUNDLED_LIBARCHIVE
MESOS_CPPFLAGS += -I../$(LIBARCHIVE)/libarchive/
LIB_LIBARCHIVE = ../$(LIBARCHIVE)/.libs/libarchive.la
LDADD += $(LIB_LIBARCHIVE)
else
LIB_LIBARCHIVE = -larchive
LDADD += -larchive
endif
if WITH_BUNDLED_LIBPROCESS
MESOS_CPPFLAGS += -I$(top_srcdir)/$(LIBPROCESS)/include
LIB_PROCESS = ../$(LIBPROCESS)/libprocess.la
else
LIB_PROCESS = -lprocess
endif
if ENABLE_SECCOMP_ISOLATOR
if WITH_BUNDLED_LIBSECCOMP
MESOS_CPPFLAGS += -I../$(LIBSECCOMP)/include
LIB_LIBSECCOMP = ../$(LIBSECCOMP)/src/libseccomp.la
else
LIB_LIBSECCOMP = -lseccomp
endif
endif
if ENABLE_NVML
if WITH_BUNDLED_NVML
MESOS_CPPFLAGS += -I../$(NVML)
endif
endif
if WITH_BUNDLED_PICOJSON
MESOS_CPPFLAGS += -I../$(PICOJSON)
endif
if WITH_BUNDLED_PROTOBUF
MESOS_CPPFLAGS += -I../$(PROTOBUF)/src
LIB_PROTOBUF = ../$(PROTOBUF)/src/libprotobuf.la
PROTOC = ../$(PROTOBUF)/src/protoc
PROTOCFLAGS += -I../$(PROTOBUF)/src
else
LIB_PROTOBUF = -lprotobuf
LDADD += -lprotobuf
PROTOC = @PROTOCOMPILER@
PROTOCFLAGS += @PROTOBUF_PROTOCFLAGS@
endif
if WITH_BUNDLED_RAPIDJSON
MESOS_CPPFLAGS += -I../$(RAPIDJSON)/include
endif
if WITH_BUNDLED_STOUT
MESOS_CPPFLAGS += -I$(top_srcdir)/$(STOUT)/include
endif
if WITH_BUNDLED_ZOOKEEPER
MESOS_CPPFLAGS += -I../$(ZOOKEEPER)/include
MESOS_CPPFLAGS += -I../$(ZOOKEEPER)/generated
LIB_ZOOKEEPER = ../$(ZOOKEEPER)/libzookeeper_mt.la
else
LIB_ZOOKEEPER = -lzookeeper_mt
LDADD += -lzookeeper_mt
endif
# README: we build the Mesos library out of a collection of
# convenience libraries (that is, libraries that do not get installed
# but we can use as building blocks to vary compile flags as necessary
# and then aggregate into final archives): libmesos_no_3rdparty.la
# libbuild.la, liblog.la, libjava.la.
# First, let's define necessary protocol buffer files.
ACLS_PROTO = $(top_srcdir)/include/mesos/authorizer/acls.proto
AGENT_PROTO = $(top_srcdir)/include/mesos/agent/agent.proto
ALLOCATOR_PROTO = $(top_srcdir)/include/mesos/allocator/allocator.proto
APPC_SPEC_PROTO = $(top_srcdir)/include/mesos/appc/spec.proto
AUTHENTICATION_PROTO = $(top_srcdir)/include/mesos/authentication/authentication.proto
AUTHORIZATION_PROTO = $(top_srcdir)/include/mesos/authorizer/authorizer.proto
CONTAINERIZER_PROTO = $(top_srcdir)/include/mesos/slave/containerizer.proto
CSI_TYPES_PROTO = $(top_srcdir)/include/mesos/csi/types.proto
DOCKER_SPEC_PROTO = $(top_srcdir)/include/mesos/docker/spec.proto
DOCKER_V1_PROTO = $(top_srcdir)/include/mesos/docker/v1.proto
DOCKER_V2_PROTO = $(top_srcdir)/include/mesos/docker/v2.proto
DOCKER_V2_2_PROTO = $(top_srcdir)/include/mesos/docker/v2_2.proto
EXECUTOR_PROTO = $(top_srcdir)/include/mesos/executor/executor.proto
FETCHER_PROTO = $(top_srcdir)/include/mesos/fetcher/fetcher.proto
HOOK_PROTO = $(top_srcdir)/include/mesos/module/hook.proto
MAINTENANCE_PROTO = $(top_srcdir)/include/mesos/maintenance/maintenance.proto
MASTER_PROTO = $(top_srcdir)/include/mesos/master/master.proto
MESOS_PROTO = $(top_srcdir)/include/mesos/mesos.proto
MODULE_PROTO = $(top_srcdir)/include/mesos/module/module.proto
OCI_SPEC_PROTO = $(top_srcdir)/include/mesos/oci/spec.proto
QUOTA_PROTO = $(top_srcdir)/include/mesos/quota/quota.proto
RESOURCE_PROVIDER_PROTO = $(top_srcdir)/include/mesos/resource_provider/resource_provider.proto
SCHEDULER_PROTO = $(top_srcdir)/include/mesos/scheduler/scheduler.proto
SECCOMP_PROTO = $(top_srcdir)/include/mesos/seccomp/seccomp.proto
STATE_PROTO = $(top_srcdir)/include/mesos/state/state.proto
OVERSUBSCRIPTION_PROTO = $(top_srcdir)/include/mesos/slave/oversubscription.proto
URI_PROTO = $(top_srcdir)/include/mesos/uri/uri.proto
V1_AGENT_PROTO = $(top_srcdir)/include/mesos/v1/agent/agent.proto
V1_ALLOCATOR_PROTO = $(top_srcdir)/include/mesos/v1/allocator/allocator.proto
V1_EXECUTOR_PROTO = $(top_srcdir)/include/mesos/v1/executor/executor.proto
V1_MAINTENANCE_PROTO = $(top_srcdir)/include/mesos/v1/maintenance/maintenance.proto
V1_MASTER_PROTO = $(top_srcdir)/include/mesos/v1/master/master.proto
V1_MESOS_PROTO = $(top_srcdir)/include/mesos/v1/mesos.proto
V1_QUOTA_PROTO = $(top_srcdir)/include/mesos/v1/quota/quota.proto
V1_RESOURCE_PROVIDER_PROTO = $(top_srcdir)/include/mesos/v1/resource_provider/resource_provider.proto
V1_SCHEDULER_PROTO = $(top_srcdir)/include/mesos/v1/scheduler/scheduler.proto
CXX_PROTOS = \
../include/mesos/mesos.pb.cc \
../include/mesos/mesos.pb.h \
../include/mesos/agent/agent.pb.cc \
../include/mesos/agent/agent.pb.h \
../include/mesos/allocator/allocator.pb.cc \
../include/mesos/allocator/allocator.pb.h \
../include/mesos/appc/spec.pb.cc \
../include/mesos/appc/spec.pb.h \
../include/mesos/authentication/authentication.pb.cc \
../include/mesos/authentication/authentication.pb.h \
../include/mesos/authorizer/acls.pb.cc \
../include/mesos/authorizer/acls.pb.h \
../include/mesos/authorizer/authorizer.pb.cc \
../include/mesos/authorizer/authorizer.pb.h \
../include/mesos/docker/spec.pb.cc \
../include/mesos/docker/spec.pb.h \
../include/mesos/docker/v1.pb.cc \
../include/mesos/docker/v1.pb.h \
../include/mesos/docker/v2.pb.cc \
../include/mesos/docker/v2.pb.h \
../include/mesos/docker/v2_2.pb.cc \
../include/mesos/docker/v2_2.pb.h \
../include/mesos/executor/executor.pb.cc \
../include/mesos/executor/executor.pb.h \
../include/mesos/fetcher/fetcher.pb.cc \
../include/mesos/fetcher/fetcher.pb.h \
../include/mesos/maintenance/maintenance.pb.cc \
../include/mesos/maintenance/maintenance.pb.h \
../include/mesos/master/master.pb.cc \
../include/mesos/master/master.pb.h \
../include/mesos/module/hook.pb.cc \
../include/mesos/module/hook.pb.h \
../include/mesos/module/module.pb.cc \
../include/mesos/module/module.pb.h \
../include/mesos/oci/spec.pb.cc \
../include/mesos/oci/spec.pb.h \
../include/mesos/quota/quota.pb.cc \
../include/mesos/quota/quota.pb.h \
../include/mesos/resource_provider/resource_provider.pb.cc \
../include/mesos/resource_provider/resource_provider.pb.h \
../include/mesos/scheduler/scheduler.pb.cc \
../include/mesos/scheduler/scheduler.pb.h \
../include/mesos/seccomp/seccomp.pb.cc \
../include/mesos/seccomp/seccomp.pb.h \
../include/mesos/slave/containerizer.pb.cc \
../include/mesos/slave/containerizer.pb.h \
../include/mesos/slave/oversubscription.pb.cc \
../include/mesos/slave/oversubscription.pb.h \
../include/mesos/state/state.pb.cc \
../include/mesos/state/state.pb.h \
../include/mesos/uri/uri.pb.cc \
../include/mesos/uri/uri.pb.h \
../include/mesos/v1/mesos.pb.cc \
../include/mesos/v1/mesos.pb.h \
../include/mesos/v1/agent/agent.pb.cc \
../include/mesos/v1/agent/agent.pb.h \
../include/mesos/v1/allocator/allocator.pb.cc \
../include/mesos/v1/allocator/allocator.pb.h \
../include/mesos/v1/executor/executor.pb.cc \
../include/mesos/v1/executor/executor.pb.h \
../include/mesos/v1/maintenance/maintenance.pb.cc \
../include/mesos/v1/maintenance/maintenance.pb.h \
../include/mesos/v1/master/master.pb.cc \
../include/mesos/v1/master/master.pb.h \
../include/mesos/v1/quota/quota.pb.cc \
../include/mesos/v1/quota/quota.pb.h \
../include/mesos/v1/resource_provider/resource_provider.pb.cc \
../include/mesos/v1/resource_provider/resource_provider.pb.h \
../include/mesos/v1/scheduler/scheduler.pb.cc \
../include/mesos/v1/scheduler/scheduler.pb.h
CXX_PROTOS += \
master/registry.pb.cc \
master/registry.pb.h \
messages/flags.pb.cc \
messages/flags.pb.h \
messages/messages.pb.cc \
messages/messages.pb.h \
resource_provider/registry.pb.cc \
resource_provider/registry.pb.h \
resource_provider/state.pb.cc \
resource_provider/state.pb.h \
slave/state.pb.cc \
slave/state.pb.h \
slave/containerizer/mesos/provisioner/docker/message.pb.cc \
slave/containerizer/mesos/provisioner/docker/message.pb.h \
slave/containerizer/mesos/isolators/docker/volume/state.pb.cc \
slave/containerizer/mesos/isolators/docker/volume/state.pb.h \
slave/containerizer/mesos/isolators/network/cni/spec.pb.cc \
slave/containerizer/mesos/isolators/network/cni/spec.pb.h \
slave/volume_gid_manager/state.pb.cc \
slave/volume_gid_manager/state.pb.h
CXX_PROTOS += \
resource_provider/storage/disk_profile.pb.cc \
resource_provider/storage/disk_profile.pb.h
CXX_CSI_PROTOS = \
../include/csi/v0/csi.grpc.pb.cc \
../include/csi/v0/csi.grpc.pb.h \
../include/csi/v0/csi.pb.cc \
../include/csi/v0/csi.pb.h \
../include/csi/v1/csi.grpc.pb.cc \
../include/csi/v1/csi.grpc.pb.h \
../include/csi/v1/csi.pb.cc \
../include/csi/v1/csi.pb.h \
../include/mesos/csi/types.pb.cc \
../include/mesos/csi/types.pb.h \
csi/state.pb.cc \
csi/state.pb.h
CXX_LOG_PROTOS = \
messages/log.pb.cc \
messages/log.pb.h
CXX_STATE_PROTOS = \
messages/state.pb.cc \
messages/state.pb.h
JAVA_PROTOS = \
java/generated/org/apache/mesos/Protos.java \
java/generated/org/apache/mesos/executor/Protos.java \
java/generated/org/apache/mesos/scheduler/Protos.java
PYTHON_PROTOS = \
python/interface/src/mesos/interface/mesos_pb2.py
V1_JAVA_PROTOS = \
java/generated/org/apache/mesos/v1/Protos.java \
java/generated/org/apache/mesos/v1/agent/Protos.java \
java/generated/org/apache/mesos/v1/allocator/Protos.java \
java/generated/org/apache/mesos/v1/executor/Protos.java \
java/generated/org/apache/mesos/v1/maintenance/Protos.java \
java/generated/org/apache/mesos/v1/master/Protos.java \
java/generated/org/apache/mesos/v1/quota/Protos.java \
java/generated/org/apache/mesos/v1/resource_provider/Protos.java \
java/generated/org/apache/mesos/v1/scheduler/Protos.java
V1_PYTHON_PROTOS = \
python/interface/src/mesos/v1/interface/agent_pb2.py \
python/interface/src/mesos/v1/interface/allocator_pb2.py \
python/interface/src/mesos/v1/interface/executor_pb2.py \
python/interface/src/mesos/v1/interface/maintenance_pb2.py \
python/interface/src/mesos/v1/interface/master_pb2.py \
python/interface/src/mesos/v1/interface/mesos_pb2.py \
python/interface/src/mesos/v1/interface/quota_pb2.py \
python/interface/src/mesos/v1/interface/resource_provider_pb2.py \
python/interface/src/mesos/v1/interface/scheduler_pb2.py
BUILT_SOURCES += \
$(CXX_CSI_PROTOS) \
$(CXX_LOG_PROTOS) \
$(CXX_PROTOS) \
$(CXX_STATE_PROTOS) \
$(JAVA_PROTOS) \
$(PYTHON_PROTOS) \
$(V1_JAVA_PROTOS) \
$(V1_PYTHON_PROTOS)
CLEANFILES += \
$(CXX_CSI_PROTOS) \
$(CXX_LOG_PROTOS) \
$(CXX_PROTOS) \
$(CXX_STATE_PROTOS) \
$(JAVA_PROTOS) \
$(PYTHON_PROTOS) \
$(V1_JAVA_PROTOS) \
$(V1_PYTHON_PROTOS)
# Targets for generating C++ protocol buffer and gRPC code.
../include/mesos/%.pb.cc ../include/mesos/%.pb.h: $(top_srcdir)/include/mesos/%.proto
$(PROTOC) $(PROTOCFLAGS) --cpp_out=../include $^
%.pb.cc %.pb.h: %.proto
$(PROTOC) $(PROTOCFLAGS) --cpp_out=. $^
../include/%.grpc.pb.cc ../include/%.grpc.pb.h ../include/%.pb.cc ../include/%.pb.h: ../$(CSI_V0)/%.proto
$(PROTOC) $(PROTOCFLAGS) --cpp_out=../include --grpc_out=../include \
--plugin=protoc-gen-grpc=$(GRPC_CPP_PLUGIN) $^
../include/%.grpc.pb.cc ../include/%.grpc.pb.h ../include/%.pb.cc ../include/%.pb.h: ../$(CSI_V1)/%.proto
$(PROTOC) $(PROTOCFLAGS) --cpp_out=../include --grpc_out=../include \
--plugin=protoc-gen-grpc=$(GRPC_CPP_PLUGIN) $^
# Targets for generating Java protocol buffer code.
java/generated/org/apache/mesos/executor/Protos.java: $(EXECUTOR_PROTO)
$(MKDIR_P) $(@D)
$(PROTOC) $(PROTOCFLAGS) --java_out=java/generated $^
java/generated/org/apache/mesos/fetcher/Protos.java: $(FETCHER_PROTO)
$(MKDIR_P) $(@D)
$(PROTOC) $(PROTOCFLAGS) --java_out=java/generated $^
java/generated/org/apache/mesos/Protos.java: $(MESOS_PROTO)
$(MKDIR_P) $(@D)
$(PROTOC) $(PROTOCFLAGS) --java_out=java/generated $^
java/generated/org/apache/mesos/scheduler/Protos.java: $(SCHEDULER_PROTO)
$(MKDIR_P) $(@D)
$(PROTOC) $(PROTOCFLAGS) --java_out=java/generated $^
java/generated/org/apache/mesos/v1/agent/Protos.java: $(V1_AGENT_PROTO)
$(MKDIR_P) $(@D)
$(PROTOC) $(PROTOCFLAGS) --java_out=java/generated $^
java/generated/org/apache/mesos/v1/allocator/Protos.java: $(V1_ALLOCATOR_PROTO)
$(MKDIR_P) $(@D)
$(PROTOC) $(PROTOCFLAGS) --java_out=java/generated $^
java/generated/org/apache/mesos/v1/executor/Protos.java: $(V1_EXECUTOR_PROTO)
$(MKDIR_P) $(@D)
$(PROTOC) $(PROTOCFLAGS) --java_out=java/generated $^
java/generated/org/apache/mesos/v1/maintenance/Protos.java: $(V1_MAINTENANCE_PROTO)
$(MKDIR_P) $(@D)
$(PROTOC) $(PROTOCFLAGS) --java_out=java/generated $^
java/generated/org/apache/mesos/v1/master/Protos.java: $(V1_MASTER_PROTO)
$(MKDIR_P) $(@D)
$(PROTOC) $(PROTOCFLAGS) --java_out=java/generated $^
java/generated/org/apache/mesos/v1/Protos.java: $(V1_MESOS_PROTO)
$(MKDIR_P) $(@D)
$(PROTOC) $(PROTOCFLAGS) --java_out=java/generated $^
java/generated/org/apache/mesos/v1/quota/Protos.java: $(V1_QUOTA_PROTO)
$(MKDIR_P) $(@D)
$(PROTOC) $(PROTOCFLAGS) --java_out=java/generated $^
java/generated/org/apache/mesos/v1/resource_provider/Protos.java: $(V1_RESOURCE_PROVIDER_PROTO)
$(MKDIR_P) $(@D)
$(PROTOC) $(PROTOCFLAGS) --java_out=java/generated $^
java/generated/org/apache/mesos/v1/scheduler/Protos.java: $(V1_SCHEDULER_PROTO)
$(MKDIR_P) $(@D)
$(PROTOC) $(PROTOCFLAGS) --java_out=java/generated $^
# Targets for generating Python protocol buffer code.
# NOTE: All python protocol buffer code that imports from mesos.proto
# has to get patched using sed, removing the leading 'mesos.'
# namespace qualifier due to the flat hierachy in the resulting
# mesos.interface egg. See MESOS-1750 for more.
python/interface/src/mesos/interface/executor_pb2.py: $(EXECUTOR_PROTO)
$(MKDIR_P) $(@D)
$(PROTOC) -I$(top_srcdir)/include/mesos/executor $(PROTOCFLAGS) \
--python_out=python/interface/src/mesos/interface $^
$(SED) -i.bak 's/mesos\.mesos_pb2/mesos_pb2/' $@ && rm $@.bak
python/interface/src/mesos/interface/mesos_pb2.py: $(MESOS_PROTO)
$(MKDIR_P) $(@D)
$(PROTOC) -I$(top_srcdir)/include/mesos $(PROTOCFLAGS) \
--python_out=python/interface/src/mesos/interface $^
python/interface/src/mesos/interface/scheduler_pb2.py: $(SCHEDULER_PROTO)
$(MKDIR_P) $(@D)
$(PROTOC) -I$(top_srcdir)/include/mesos/scheduler $(PROTOCFLAGS) \
--python_out=python/interface/src/mesos/interface $^
$(SED) -i.bak 's/mesos\.mesos_pb2/mesos_pb2/' $@ && rm $@.bak
python/interface/src/mesos/v1/interface/agent_pb2.py: $(V1_AGENT_PROTO)
$(MKDIR_P) $(@D)
$(PROTOC) -I$(top_srcdir)/include/mesos/v1/agent $(PROTOCFLAGS) \
--python_out=python/interface/src/mesos/v1/interface $^
$(SED) -i.bak 's/mesos\.mesos_pb2/mesos_pb2/' $@ && rm $@.bak
python/interface/src/mesos/v1/interface/allocator_pb2.py: $(V1_ALLOCATOR_PROTO)
$(MKDIR_P) $(@D)
$(PROTOC) -I$(top_srcdir)/include/mesos/v1/allocator $(PROTOCFLAGS) \
--python_out=python/interface/src/mesos/v1/interface $^
$(SED) -i.bak 's/mesos\.mesos_pb2/mesos_pb2/' $@ && rm $@.bak
python/interface/src/mesos/v1/interface/executor_pb2.py: $(V1_EXECUTOR_PROTO)
$(MKDIR_P) $(@D)
$(PROTOC) -I$(top_srcdir)/include/mesos/v1/executor $(PROTOCFLAGS) \
--python_out=python/interface/src/mesos/v1/interface $^
$(SED) -i.bak 's/mesos\.mesos_pb2/mesos_pb2/' $@ && rm $@.bak
python/interface/src/mesos/v1/interface/maintenance_pb2.py: $(V1_MAINTENANCE_PROTO)
$(MKDIR_P) $(@D)
$(PROTOC) -I$(top_srcdir)/include/mesos/v1/maintenance $(PROTOCFLAGS) \
--python_out=python/interface/src/mesos/v1/interface $^
$(SED) -i.bak 's/mesos\.mesos_pb2/mesos_pb2/' $@ && rm $@.bak
python/interface/src/mesos/v1/interface/master_pb2.py: $(V1_MASTER_PROTO)
$(MKDIR_P) $(@D)
$(PROTOC) -I$(top_srcdir)/include/mesos/v1/master $(PROTOCFLAGS) \
--python_out=python/interface/src/mesos/v1/interface $^
$(SED) -i.bak 's/mesos\.mesos_pb2/mesos_pb2/' $@ && rm $@.bak
python/interface/src/mesos/v1/interface/mesos_pb2.py: $(V1_MESOS_PROTO)
$(MKDIR_P) $(@D)
$(PROTOC) -I$(top_srcdir)/include/mesos/v1 $(PROTOCFLAGS) \
--python_out=python/interface/src/mesos/v1/interface $^
python/interface/src/mesos/v1/interface/quota_pb2.py: $(V1_QUOTA_PROTO)
$(MKDIR_P) $(@D)
$(PROTOC) -I$(top_srcdir)/include/mesos/v1/quota $(PROTOCFLAGS) \
--python_out=python/interface/src/mesos/v1/interface $^
$(SED) -i.bak 's/mesos\.mesos_pb2/mesos_pb2/' $@ && rm $@.bak
python/interface/src/mesos/v1/interface/resource_provider_pb2.py: $(V1_RESOURCE_PROVIDER_PROTO)
$(MKDIR_P) $(@D)
$(PROTOC) -I$(top_srcdir)/include/mesos/v1/resource_provider $(PROTOCFLAGS) \
--python_out=python/interface/src/mesos/v1/interface $^
$(SED) -i.bak 's/mesos\.mesos_pb2/mesos_pb2/' $@ && rm $@.bak
python/interface/src/mesos/v1/interface/scheduler_pb2.py: $(V1_SCHEDULER_PROTO)
$(MKDIR_P) $(@D)
$(PROTOC) -I$(top_srcdir)/include/mesos/v1/scheduler $(PROTOCFLAGS) \
--python_out=python/interface/src/mesos/v1/interface $^
$(SED) -i.bak 's/mesos\.mesos_pb2/mesos_pb2/' $@ && rm $@.bak
pkginclude_HEADERS = \
$(top_srcdir)/include/mesos/attributes.hpp \
$(top_srcdir)/include/mesos/executor.hpp \
$(top_srcdir)/include/mesos/hook.hpp \
$(top_srcdir)/include/mesos/http.hpp \
$(top_srcdir)/include/mesos/mesos.hpp \
$(top_srcdir)/include/mesos/mesos.proto \
$(top_srcdir)/include/mesos/module.hpp \
$(top_srcdir)/include/mesos/resources.hpp \
$(top_srcdir)/include/mesos/resource_quantities.hpp \
$(top_srcdir)/include/mesos/roles.hpp \
$(top_srcdir)/include/mesos/scheduler.hpp \
$(top_srcdir)/include/mesos/type_utils.hpp \
$(top_srcdir)/include/mesos/values.hpp
nodist_pkginclude_HEADERS = \
../include/mesos/version.hpp \
../include/mesos/mesos.pb.h
allocatordir = $(pkgincludedir)/allocator
allocator_HEADERS = \
$(top_srcdir)/include/mesos/allocator/allocator.hpp \
$(top_srcdir)/include/mesos/allocator/allocator.proto
nodist_allocator_HEADERS = \
../include/mesos/allocator/allocator.pb.h
appcdir = $(pkgincludedir)/appc
appc_HEADERS = \
$(top_srcdir)/include/mesos/appc/spec.hpp \
$(top_srcdir)/include/mesos/appc/spec.proto
nodist_appc_HEADERS = \
../include/mesos/appc/spec.pb.h
authenticationdir = $(pkgincludedir)/authentication
authentication_HEADERS = \
$(top_srcdir)/include/mesos/authentication/authenticatee.hpp \
$(top_srcdir)/include/mesos/authentication/authentication.hpp \
$(top_srcdir)/include/mesos/authentication/authentication.proto \
$(top_srcdir)/include/mesos/authentication/authenticator.hpp \
$(top_srcdir)/include/mesos/authentication/secret_generator.hpp
nodist_authentication_HEADERS = \
../include/mesos/authentication/authentication.pb.h
httpauthenticationdir = $(pkgincludedir)/authentication/http
httpauthentication_HEADERS = \
$(top_srcdir)/include/mesos/authentication/http/authenticatee.hpp \
$(top_srcdir)/include/mesos/authentication/http/basic_authenticator_factory.hpp \
$(top_srcdir)/include/mesos/authentication/http/combined_authenticator.hpp
authorizerdir = $(pkgincludedir)/authorizer
authorizer_HEADERS = \
$(top_srcdir)/include/mesos/authorizer/acls.hpp \
$(top_srcdir)/include/mesos/authorizer/acls.proto \
$(top_srcdir)/include/mesos/authorizer/authorizer.hpp \
$(top_srcdir)/include/mesos/authorizer/authorizer.proto
nodist_authorizer_HEADERS = \
../include/mesos/authorizer/acls.pb.h \
../include/mesos/authorizer/authorizer.pb.h
csidir = $(pkgincludedir)/csi
csi_HEADERS = \
$(top_srcdir)/include/mesos/csi/types.hpp \
$(top_srcdir)/include/mesos/csi/types.proto \
$(top_srcdir)/include/mesos/csi/v0.hpp \
$(top_srcdir)/include/mesos/csi/v1.hpp
nodist_csi_HEADERS = \
../include/mesos/csi/types.pb.h
# Install the generated CSI headers into $PREFIX/include.
csi_v0dir = $(includedir)/csi/v0
nodist_csi_v0_HEADERS = \
../include/csi/v0/csi.grpc.pb.h \
../include/csi/v0/csi.pb.h
csi_v1dir = $(includedir)/csi/v1
nodist_csi_v1_HEADERS = \
../include/csi/v1/csi.grpc.pb.h \
../include/csi/v1/csi.pb.h
dockerdir = $(pkgincludedir)/docker
docker_HEADERS = \
$(top_srcdir)/include/mesos/docker/spec.hpp \
$(top_srcdir)/include/mesos/docker/spec.proto \
$(top_srcdir)/include/mesos/docker/v1.hpp \
$(top_srcdir)/include/mesos/docker/v1.proto \
$(top_srcdir)/include/mesos/docker/v2.hpp \
$(top_srcdir)/include/mesos/docker/v2.proto \
$(top_srcdir)/include/mesos/docker/v2_2.hpp \
$(top_srcdir)/include/mesos/docker/v2_2.proto
nodist_docker_HEADERS = \
../include/mesos/docker/spec.pb.h \
../include/mesos/docker/v1.pb.h \
../include/mesos/docker/v2.pb.h \
../include/mesos/docker/v2_2.pb.h
executordir = $(pkgincludedir)/executor
executor_HEADERS = \
$(top_srcdir)/include/mesos/executor/executor.hpp \
$(top_srcdir)/include/mesos/executor/executor.proto
nodist_executor_HEADERS = \
../include/mesos/executor/executor.pb.h
fetcherdir = $(pkgincludedir)/fetcher
fetcher_HEADERS = \
$(top_srcdir)/include/mesos/fetcher/fetcher.hpp \
$(top_srcdir)/include/mesos/fetcher/fetcher.proto
nodist_fetcher_HEADERS = \
../include/mesos/fetcher/fetcher.pb.h
logdir = $(pkgincludedir)/log
log_HEADERS = \
$(top_srcdir)/include/mesos/log/log.hpp
maintenancedir = $(pkgincludedir)/maintenance
maintenance_HEADERS = \
$(top_srcdir)/include/mesos/maintenance/maintenance.hpp \
$(top_srcdir)/include/mesos/maintenance/maintenance.proto
nodist_maintenance_HEADERS = \
../include/mesos/maintenance/maintenance.pb.h
masterdir = $(pkgincludedir)/master
master_HEADERS = \
$(top_srcdir)/include/mesos/master/contender.hpp \
$(top_srcdir)/include/mesos/master/detector.hpp \
$(top_srcdir)/include/mesos/master/master.hpp \
$(top_srcdir)/include/mesos/master/master.proto
nodist_master_HEADERS = \
../include/mesos/master/master.pb.h
moduledir = $(pkgincludedir)/module
module_HEADERS = \
$(top_srcdir)/include/mesos/module/allocator.hpp \
$(top_srcdir)/include/mesos/module/anonymous.hpp \
$(top_srcdir)/include/mesos/module/authenticatee.hpp \
$(top_srcdir)/include/mesos/module/authenticator.hpp \
$(top_srcdir)/include/mesos/module/authorizer.hpp \
$(top_srcdir)/include/mesos/module/container_logger.hpp \
$(top_srcdir)/include/mesos/module/contender.hpp \
$(top_srcdir)/include/mesos/module/detector.hpp \
$(top_srcdir)/include/mesos/module/disk_profile_adaptor.hpp \
$(top_srcdir)/include/mesos/module/hook.hpp \
$(top_srcdir)/include/mesos/module/hook.proto \
$(top_srcdir)/include/mesos/module/http_authenticatee.hpp \
$(top_srcdir)/include/mesos/module/http_authenticator.hpp \
$(top_srcdir)/include/mesos/module/isolator.hpp \
$(top_srcdir)/include/mesos/module/module.hpp \
$(top_srcdir)/include/mesos/module/module.proto \
$(top_srcdir)/include/mesos/module/qos_controller.hpp \
$(top_srcdir)/include/mesos/module/resource_estimator.hpp \
$(top_srcdir)/include/mesos/module/secret_generator.hpp \
$(top_srcdir)/include/mesos/module/secret_resolver.hpp
nodist_module_HEADERS = \
../include/mesos/module/hook.pb.h \
../include/mesos/module/module.pb.h
ocidir = $(pkgincludedir)/oci
oci_HEADERS = \
$(top_srcdir)/include/mesos/oci/spec.hpp \
$(top_srcdir)/include/mesos/oci/spec.proto
nodist_oci_HEADERS = \
../include/mesos/oci/spec.pb.h
quotadir = $(pkgincludedir)/quota
quota_HEADERS = \
$(top_srcdir)/include/mesos/quota/quota.hpp \
$(top_srcdir)/include/mesos/quota/quota.proto
nodist_quota_HEADERS = \
../include/mesos/quota/quota.pb.h
resourceproviderdir = $(pkgincludedir)/resource_provider
resourceprovider_HEADERS = \
$(top_srcdir)/include/mesos/resource_provider/resource_provider.hpp \
$(top_srcdir)/include/mesos/resource_provider/resource_provider.proto
nodist_resourceprovider_HEADERS = \
../include/mesos/resource_provider/resource_provider.pb.h
resourceprovider_storagedir = $(pkgincludedir)/resource_provider/storage
resourceprovider_storage_HEADERS = \
$(top_srcdir)/include/mesos/resource_provider/storage/disk_profile_adaptor.hpp
schedulerdir = $(pkgincludedir)/scheduler
scheduler_HEADERS = \
$(top_srcdir)/include/mesos/scheduler/scheduler.hpp \
$(top_srcdir)/include/mesos/scheduler/scheduler.proto
nodist_scheduler_HEADERS = \
../include/mesos/scheduler/scheduler.pb.h
seccompdir = $(pkgincludedir)/seccomp
seccomp_HEADERS = \
$(top_srcdir)/include/mesos/seccomp/seccomp.hpp \
$(top_srcdir)/include/mesos/seccomp/seccomp.proto
nodist_seccomp_HEADERS = \
../include/mesos/seccomp/seccomp.pb.h
agentdir = $(pkgincludedir)/agent
agent_HEADERS = \
$(top_srcdir)/include/mesos/agent/agent.hpp \
$(top_srcdir)/include/mesos/agent/agent.proto \
$(top_srcdir)/include/mesos/slave/container_logger.hpp \
$(top_srcdir)/include/mesos/slave/containerizer.hpp \
$(top_srcdir)/include/mesos/slave/isolator.hpp \
$(top_srcdir)/include/mesos/slave/oversubscription.hpp \
$(top_srcdir)/include/mesos/slave/oversubscription.proto \
$(top_srcdir)/include/mesos/slave/qos_controller.hpp \
$(top_srcdir)/include/mesos/slave/resource_estimator.hpp
nodist_agent_HEADERS = \
../include/mesos/agent/agent.pb.h \
../include/mesos/slave/containerizer.pb.h \
../include/mesos/slave/oversubscription.pb.h
secretdir = $(pkgincludedir)/secret
secret_HEADERS = \
$(top_srcdir)/include/mesos/secret/resolver.hpp
statedir = $(pkgincludedir)/state
state_HEADERS = \
$(top_srcdir)/include/mesos/state/in_memory.hpp \
$(top_srcdir)/include/mesos/state/leveldb.hpp \
$(top_srcdir)/include/mesos/state/log.hpp \
$(top_srcdir)/include/mesos/state/protobuf.hpp \
$(top_srcdir)/include/mesos/state/state.hpp \
$(top_srcdir)/include/mesos/state/state.proto \
$(top_srcdir)/include/mesos/state/storage.hpp \
$(top_srcdir)/include/mesos/state/zookeeper.hpp
nodist_state_HEADERS = \
../include/mesos/state/state.pb.h
uridir = $(pkgincludedir)/uri
uri_HEADERS = \
$(top_srcdir)/include/mesos/uri/fetcher.hpp \
$(top_srcdir)/include/mesos/uri/uri.hpp \
$(top_srcdir)/include/mesos/uri/uri.proto
nodist_uri_HEADERS = \
../include/mesos/uri/uri.pb.h
v1dir = $(pkgincludedir)/v1
v1_HEADERS = \
$(top_srcdir)/include/mesos/v1/attributes.hpp \
$(top_srcdir)/include/mesos/v1/executor.hpp \
$(top_srcdir)/include/mesos/v1/mesos.hpp \
$(top_srcdir)/include/mesos/v1/mesos.proto \
$(top_srcdir)/include/mesos/v1/resources.hpp \
$(top_srcdir)/include/mesos/v1/resource_provider.hpp \
$(top_srcdir)/include/mesos/v1/scheduler.hpp \
$(top_srcdir)/include/mesos/v1/values.hpp
nodist_v1_HEADERS = \
../include/mesos/v1/mesos.pb.h
v1agentdir = $(pkgincludedir)/v1/agent
v1agent_HEADERS = \
$(top_srcdir)/include/mesos/v1/agent/agent.hpp \
$(top_srcdir)/include/mesos/v1/agent/agent.proto
nodist_v1agent_HEADERS = \
../include/mesos/v1/agent/agent.pb.h
v1allocatordir = $(pkgincludedir)/v1/allocator
v1allocator_HEADERS = \
$(top_srcdir)/include/mesos/v1/allocator/allocator.proto
nodist_v1allocator_HEADERS = \
../include/mesos/v1/allocator/allocator.pb.h
v1executordir = $(pkgincludedir)/v1/executor
v1executor_HEADERS = \
$(top_srcdir)/include/mesos/v1/executor/executor.hpp \
$(top_srcdir)/include/mesos/v1/executor/executor.proto
nodist_v1executor_HEADERS = \
../include/mesos/v1/executor/executor.pb.h
v1maintenancedir = $(pkgincludedir)/v1/maintenance
v1maintenance_HEADERS = \
$(top_srcdir)/include/mesos/v1/maintenance/maintenance.hpp \
$(top_srcdir)/include/mesos/v1/maintenance/maintenance.proto
nodist_v1maintenance_HEADERS = \
../include/mesos/v1/maintenance/maintenance.pb.h
v1masterdir = $(pkgincludedir)/v1/master
v1master_HEADERS = \
$(top_srcdir)/include/mesos/v1/master/master.hpp \
$(top_srcdir)/include/mesos/v1/master/master.proto
nodist_v1master_HEADERS = \
../include/mesos/v1/master/master.pb.h
v1quotadir = $(pkgincludedir)/v1/quota
v1quota_HEADERS = \
$(top_srcdir)/include/mesos/v1/quota/quota.proto
nodist_v1quota_HEADERS = \
../include/mesos/v1/quota/quota.pb.h
v1resourceproviderdir = $(pkgincludedir)/v1/resource_provider
v1resourceprovider_HEADERS = \
$(top_srcdir)/include/mesos/v1/resource_provider/resource_provider.hpp \
$(top_srcdir)/include/mesos/v1/resource_provider/resource_provider.proto
nodist_v1resourceprovider_HEADERS = \
../include/mesos/v1/resource_provider/resource_provider.pb.h
v1schedulerdir = $(pkgincludedir)/v1/scheduler
v1scheduler_HEADERS = \