1# 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 20THRIFT_FILES = $(wildcard ../*.thrift) 21 22ERL_FLAG = erl 23# make sure ThriftTest.thrift is generated last to prevent conflicts with other *.thrift files 24.generated: $(THRIFT_FILES) 25 for f in $(THRIFT_FILES) ; do \ 26 $(THRIFT) --gen $(ERL_FLAG) -o src $$f ; \ 27 done ; \ 28 $(THRIFT) --gen $(ERL_FLAG) -o src ../v0.16/ThriftTest.thrift 29 touch .generated 30 31precross: .generated 32 $(REBAR) compile 33 34maintainer-clean-local: 35 $(RM) -r ebin/ 36 37clean: 38 $(REBAR) clean 39 $(RM) .generated 40 $(RM) -r .rebar/ 41 $(RM) -r src/gen-erl/ 42 43dist-hook: 44 $(RM) $(distdir)/.generated 45 $(RM) -r $(distdir)/.rebar/ 46 $(RM) -r $(distdir)/ebin/ 47 $(RM) -r $(distdir)/src/gen-erl/ 48