2009-03-30 21:35:00 +00:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
|
2010-08-31 16:51:21 +00:00
|
|
|
SUBDIRS =
|
|
|
|
|
|
|
|
if WITH_CPP
|
|
|
|
SUBDIRS += cpp
|
|
|
|
endif
|
2007-12-28 18:25:33 +00:00
|
|
|
|
2010-10-27 12:30:11 +00:00
|
|
|
if WITH_C_GLIB
|
|
|
|
SUBDIRS += c_glib
|
|
|
|
endif
|
|
|
|
|
2008-06-11 01:16:53 +00:00
|
|
|
if WITH_MONO
|
2008-02-06 22:10:12 +00:00
|
|
|
SUBDIRS += csharp
|
|
|
|
endif
|
|
|
|
|
2008-06-11 01:16:53 +00:00
|
|
|
if WITH_JAVA
|
2008-02-23 22:07:39 +00:00
|
|
|
SUBDIRS += java
|
2011-03-17 19:13:36 +00:00
|
|
|
# JavaScript unit test depends on java
|
|
|
|
# so test only if java, ant & co is available
|
|
|
|
SUBDIRS += js/test
|
2008-02-23 22:07:39 +00:00
|
|
|
endif
|
|
|
|
|
2008-06-11 01:16:53 +00:00
|
|
|
if WITH_PYTHON
|
2008-06-11 01:16:37 +00:00
|
|
|
SUBDIRS += py
|
|
|
|
endif
|
|
|
|
|
2008-06-11 01:16:53 +00:00
|
|
|
if WITH_ERLANG
|
2008-06-11 01:15:45 +00:00
|
|
|
SUBDIRS += erl
|
2008-03-04 07:09:12 +00:00
|
|
|
endif
|
|
|
|
|
2008-07-11 08:04:12 +00:00
|
|
|
if WITH_RUBY
|
2008-07-08 00:47:49 +00:00
|
|
|
SUBDIRS += rb
|
|
|
|
endif
|
|
|
|
|
2010-09-27 17:22:17 +00:00
|
|
|
if WITH_HASKELL
|
|
|
|
SUBDIRS += hs
|
|
|
|
endif
|
|
|
|
|
2009-02-01 04:47:30 +00:00
|
|
|
if WITH_PERL
|
|
|
|
SUBDIRS += perl
|
|
|
|
endif
|
|
|
|
|
2010-05-02 22:39:31 +00:00
|
|
|
if WITH_PHP
|
|
|
|
SUBDIRS += php
|
|
|
|
endif
|
|
|
|
|
2012-03-22 21:49:10 +00:00
|
|
|
if WITH_D
|
|
|
|
SUBDIRS += d
|
|
|
|
endif
|
|
|
|
|
2008-07-11 08:02:29 +00:00
|
|
|
# All of the libs that don't use Automake need to go in here
|
|
|
|
# so they will end up in our release tarballs.
|
2007-12-28 18:25:33 +00:00
|
|
|
EXTRA_DIST = \
|
2011-11-16 12:58:36 +00:00
|
|
|
as3 \
|
|
|
|
cocoa \
|
2012-10-11 00:29:11 +00:00
|
|
|
d \
|
2011-11-16 12:58:36 +00:00
|
|
|
delphi \
|
|
|
|
go \
|
|
|
|
javame \
|
|
|
|
js \
|
|
|
|
nodejs \
|
|
|
|
ocaml \
|
|
|
|
st
|