diff options
| author | Jan Cholasta <jcholast@redhat.com> | 2016-05-13 08:40:53 +0200 |
|---|---|---|
| committer | Martin Basti <mbasti@redhat.com> | 2016-05-19 15:52:06 +0200 |
| commit | 54520064989c8a9e45bcaea2e9463c7a62416c0a (patch) | |
| tree | d8b4b8c84fe72adf0ac13dac7cd26baa9e0f8125 /Makefile | |
| parent | 1276083d95b41c91796cae9f8635fa4c89635bbd (diff) | |
| download | freeipa-54520064989c8a9e45bcaea2e9463c7a62416c0a.tar.gz freeipa-54520064989c8a9e45bcaea2e9463c7a62416c0a.tar.xz freeipa-54520064989c8a9e45bcaea2e9463c7a62416c0a.zip | |
build: fix client-only build
https://fedorahosted.org/freeipa/ticket/5889
Reviewed-By: Martin Basti <mbasti@redhat.com>
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -4,7 +4,7 @@ include VERSION SUBDIRS=asn1 daemons install ipapython ipalib -CLIENTDIRS=ipapython client asn1 +CLIENTDIRS=ipapython ipalib client asn1 CLIENTPYDIRS=ipaclient ipaplatform PRJ_PREFIX=freeipa @@ -87,6 +87,11 @@ check: bootstrap-autogen server tests (cd $$subdir && $(MAKE) check) || exit 1; \ done +client-check: client-autogen + @for subdir in $(CLIENTDIRS); do \ + (cd $$subdir && $(MAKE) check) || exit 1; \ + done + bootstrap-autogen: version-update client-autogen @echo "Building IPA $(IPA_VERSION)" cd asn1; if [ ! -e Makefile ]; then ../autogen.sh --prefix=/usr --sysconfdir=/etc --localstatedir=/var --libdir=$(LIBDIR); fi |
