Add all subdirs to SUBDIRS regardless of automake conditionals.

This commit is contained in:
Daiki Ueno
2011-08-30 18:55:31 +09:00
parent 5f6eb76d7f
commit 747ce4e00b
3 changed files with 6 additions and 9 deletions

View File

@ -16,12 +16,4 @@
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
# 02110-1301 USA # 02110-1301 USA
SUBDIRS = SUBDIRS = python vala
if ENABLE_PYTHON
SUBDIRS += python
endif
if ENABLE_VALA
SUBDIRS += vala
endif

View File

@ -15,6 +15,7 @@
# along with this program. If not, see # along with this program. If not, see
# <http://www.gnu.org/licenses/>. # <http://www.gnu.org/licenses/>.
if ENABLE_PYTHON
pkgpython_PYTHON = \ pkgpython_PYTHON = \
__init__.py \ __init__.py \
serializable.py \ serializable.py \
@ -23,3 +24,4 @@ pkgpython_PYTHON = \
text.py \ text.py \
client.py \ client.py \
context.py context.py
endif

View File

@ -16,6 +16,7 @@
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
# 02110-1301 USA # 02110-1301 USA
if ENABLE_VALA
vapidir = $(datadir)/vala/vapi vapidir = $(datadir)/vala/vapi
dist_vapi_DATA = \ dist_vapi_DATA = \
eek-$(EEK_API_VERSION).vapi \ eek-$(EEK_API_VERSION).vapi \
@ -72,3 +73,5 @@ eekboard-$(EEK_API_VERSION).vapi:
VAPIGEN_V = $(VAPIGEN_V_$(V)) VAPIGEN_V = $(VAPIGEN_V_$(V))
VAPIGEN_V_ = $(VAPIGEN_V_$(AM_DEFAULT_VERBOSITY)) VAPIGEN_V_ = $(VAPIGEN_V_$(AM_DEFAULT_VERBOSITY))
VAPIGEN_V_0 = @echo " VAPIG " $@; VAPIGEN_V_0 = @echo " VAPIG " $@;
endif