mirror of
https://github.com/valitydev/thrift.git
synced 2024-11-07 18:58:51 +00:00
b6f18c20ee
Summary: fix the Makefile to use BSD-friendly find(1) and enable conditional building of the Erlang binding. Contributed by Dan Sully (daniel@electricrain.com). Reviewed By: eletuchy Test Plan: builds git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665549 13f79535-47bb-0310-9956-ffa450edef68
26 lines
233 B
Makefile
26 lines
233 B
Makefile
SUBDIRS = \
|
|
cpp \
|
|
py
|
|
|
|
if ENABLE_MONO
|
|
SUBDIRS += csharp
|
|
endif
|
|
|
|
if ENABLE_JAVA
|
|
SUBDIRS += java
|
|
endif
|
|
|
|
if ENABLE_ERLANG
|
|
SUBDIRS += erl
|
|
endif
|
|
|
|
EXTRA_DIST = \
|
|
cocoa \
|
|
erl \
|
|
hs \
|
|
ocaml \
|
|
perl \
|
|
php \
|
|
rb \
|
|
st
|