Makefile.am 219 Bytes
Newer Older
1 2 3 4 5 6 7 8
if BUILD_JAVA
DIR_J = java
endif

if BUILD_PYTHON
DIR_P = python
endif

9 10 11 12
if BUILD_RUBY
DIR_R = ruby
endif

13 14 15 16 17 18
if BUILD_CL
DIR_R = cl
endif

SUBDIRS = $(DIR_J) $(DIR_P) $(DIR_R) $(DIR_CL)
DIST_SUBDIRS = java python ruby cl
19