blob: 992558b370fc9be1d6b31b2a4a698b3f58a17c0d [file] [log] [blame]
Volodymyr Gotrab587a122016-09-14 19:18:48 -05001#
2# Licensed to the Apache Software Foundation (ASF) under one
3# or more contributor license agreements. See the NOTICE file
4# distributed with this work for additional information
5# regarding copyright ownership. The ASF licenses this file
6# to you under the Apache License, Version 2.0 (the
7# "License"); you may not use this file except in compliance
8# with the License. You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing,
13# software distributed under the License is distributed on an
14# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15# KIND, either express or implied. See the License for the
16# specific language governing permissions and limitations
17# under the License.
18#
19
20SUBDIRS = .
21
Volodymyr Gotrab587a122016-09-14 19:18:48 -050022THRIFTCODE = \
Volodymyr Gotra54993292017-12-18 02:08:09 +020023 Thrift/Thrift.csproj
Volodymyr Gotrab587a122016-09-14 19:18:48 -050024
25all-local: \
26 Thrift.dll
27
28Thrift.dll: $(THRIFTCODE)
Volodymyr Gotra54993292017-12-18 02:08:09 +020029# $(MKDIR_P) $(GENDIR)
30# $(THRIFT) -gen netcore:wcf -r -out $(GENDIR) $(TESTDIR)/CassandraTest.thrift
31# $(THRIFT) -gen netcore:wcf -r -out $(GENDIR) $(top_srcdir)/test/ThriftTest.thrift
32# $(THRIFT) -gen netcore:wcf -r -out $(GENDIR) $(top_srcdir)/contrib/fb303/if/fb303.thrift
James E. King, IIIb6287362017-09-28 11:57:42 +000033 $(DOTNETCORE) build
Volodymyr Gotrab587a122016-09-14 19:18:48 -050034
35clean-local:
Volodymyr Gotrab587a122016-09-14 19:18:48 -050036 $(RM) -r Thrift/bin
37 $(RM) -r Thrift/obj
Volodymyr Gotrab587a122016-09-14 19:18:48 -050038
39EXTRA_DIST = \
Volodymyr Gotra54993292017-12-18 02:08:09 +020040 Thrift \
Volodymyr Gotrab587a122016-09-14 19:18:48 -050041 Thrift.sln \
Volodymyr Gotrab587a122016-09-14 19:18:48 -050042 Tests \
43 README.md
44