Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support client-only build #494

Closed
wants to merge 14 commits into from
Closed
14 changes: 13 additions & 1 deletion Makefile.am
@@ -1,7 +1,19 @@
ACLOCAL_AMFLAGS = -I m4

IPACLIENT_SUBDIRS = ipaclient ipalib ipapython
SUBDIRS = asn1 util client contrib daemons init install $(IPACLIENT_SUBDIRS) ipaplatform ipaserver ipatests po

if ENABLE_SERVER
SERVER_SUBDIRS = daemons init install ipaserver
endif

if WITH_IPATESTS
TEST_SUBDIRS = ipatests
endif

SUBDIRS = asn1 util client contrib $(IPACLIENT_SUBDIRS) ipaplatform po \
$(SERVER_SUBDIRS) \
$(TEST_SUBDIRS) \
$(NULL)

MOSTLYCLEANFILES = ipasetup.pyc ipasetup.pyo \
ignore_import_errors.pyc ignore_import_errors.pyo \
Expand Down
6 changes: 3 additions & 3 deletions client/Makefile.am
Expand Up @@ -58,7 +58,7 @@ ipa_getkeytab_LDADD = \
$(LDAP_LIBS) \
$(SASL_LIBS) \
$(POPT_LIBS) \
$(LIBINTL_LIBS) \
$(LTLIBINTL) \
$(INI_LIBS) \
$(NULL)

Expand All @@ -70,7 +70,7 @@ ipa_rmkeytab_SOURCES = \
ipa_rmkeytab_LDADD = \
$(KRB5_LIBS) \
$(POPT_LIBS) \
$(LIBINTL_LIBS) \
$(LTLIBINTL) \
$(NULL)

ipa_join_SOURCES = \
Expand All @@ -85,7 +85,7 @@ ipa_join_LDADD = \
$(SASL_LIBS) \
$(XMLRPC_LIBS) \
$(POPT_LIBS) \
$(LIBINTL_LIBS) \
$(LTLIBINTL) \
$(NULL)

SUBDIRS = \
Expand Down