0000-12-31 18:09:24 -05:50
|
|
|
# This file will be processed with automake-1.7 to create Makefile.in
|
|
|
|
|
|
|
|
AUTOMAKE_OPTIONS = 1.7
|
|
|
|
|
|
|
|
NULL =
|
|
|
|
|
2010-11-04 11:08:26 -05:00
|
|
|
AM_CFLAGS = $(NULL)
|
|
|
|
if HAVE_GCC
|
|
|
|
AM_CFLAGS += -Wall -Wshadow -Wstrict-prototypes -Wpointer-arith \
|
|
|
|
-Wcast-align -Werror-implicit-function-declaration \
|
|
|
|
$(NULL)
|
|
|
|
endif
|
|
|
|
export AM_CFLAGS
|
|
|
|
|
2010-11-04 13:29:01 -05:00
|
|
|
KRB5_UTIL_DIR=../util
|
|
|
|
KRB5_UTIL_SRCS=$(KRB5_UTIL_DIR)/ipa_krb5.c
|
2014-11-17 14:19:57 -06:00
|
|
|
ASN1_UTIL_DIR=../asn1
|
2015-11-23 13:50:04 -06:00
|
|
|
IPA_CONF_FILE=$(sysconfdir)/ipa/default.conf
|
2010-11-04 13:29:01 -05:00
|
|
|
|
2013-03-12 09:28:58 -05:00
|
|
|
AM_CPPFLAGS = \
|
2007-12-21 10:37:19 -06:00
|
|
|
-I. \
|
|
|
|
-I$(srcdir) \
|
2010-11-04 13:29:01 -05:00
|
|
|
-I$(KRB5_UTIL_DIR) \
|
2014-11-17 14:19:57 -06:00
|
|
|
-I$(ASN1_UTIL_DIR) \
|
2007-12-21 10:37:19 -06:00
|
|
|
-DPREFIX=\""$(prefix)"\" \
|
|
|
|
-DBINDIR=\""$(bindir)"\" \
|
|
|
|
-DLIBDIR=\""$(libdir)"\" \
|
|
|
|
-DLIBEXECDIR=\""$(libexecdir)"\" \
|
|
|
|
-DDATADIR=\""$(datadir)"\" \
|
2010-10-11 17:36:43 -05:00
|
|
|
-DLOCALEDIR=\""$(localedir)"\" \
|
2015-11-23 13:50:04 -06:00
|
|
|
-DIPACONFFILE=\""$(IPA_CONF_FILE)"\" \
|
2007-12-21 10:37:19 -06:00
|
|
|
$(KRB5_CFLAGS) \
|
2008-05-01 08:57:32 -05:00
|
|
|
$(OPENLDAP_CFLAGS) \
|
2007-12-21 10:37:19 -06:00
|
|
|
$(SASL_CFLAGS) \
|
|
|
|
$(POPT_CFLAGS) \
|
|
|
|
$(WARN_CFLAGS) \
|
2015-11-23 13:50:04 -06:00
|
|
|
$(INI_CFLAGS) \
|
2007-12-21 10:37:19 -06:00
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
sbin_PROGRAMS = \
|
|
|
|
ipa-getkeytab \
|
2009-12-04 15:29:09 -06:00
|
|
|
ipa-rmkeytab \
|
2009-09-14 16:04:08 -05:00
|
|
|
ipa-join \
|
2007-12-21 10:37:19 -06:00
|
|
|
$(NULL)
|
|
|
|
|
Split ipa-client/ into ipaclient/ (Python library) and client/ (C, scripts)
Make ipaclient a Python library like ipapython, ipalib, etc.
Use setup.py instead of autotools for installing it.
Move C client tools, Python scripts, and man pages, to client/.
Remove old, empty or outdated, boilerplate files (NEWS, README, AUTHORS).
Remove /setup-client.py (ipalib/setup.py should be used instead).
Update Makefiles and the spec file accordingly.
https://fedorahosted.org/freeipa/ticket/5638
Reviewed-By: Jan Cholasta <jcholast@redhat.com>
2016-01-14 07:15:49 -06:00
|
|
|
sbin_SCRIPTS = \
|
|
|
|
ipa-client-install \
|
|
|
|
ipa-client-automount \
|
|
|
|
ipa-certupdate \
|
|
|
|
$(NULL)
|
|
|
|
|
2007-12-21 10:37:19 -06:00
|
|
|
ipa_getkeytab_SOURCES = \
|
|
|
|
ipa-getkeytab.c \
|
2010-11-05 03:36:00 -05:00
|
|
|
ipa-client-common.c \
|
2010-11-04 13:29:01 -05:00
|
|
|
$(KRB5_UTIL_SRCS) \
|
2007-12-21 10:37:19 -06:00
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
ipa_getkeytab_LDADD = \
|
2014-11-17 14:19:57 -06:00
|
|
|
../asn1/libipaasn1.la \
|
2007-12-21 10:37:19 -06:00
|
|
|
$(KRB5_LIBS) \
|
2008-05-01 08:57:32 -05:00
|
|
|
$(OPENLDAP_LIBS) \
|
2007-12-21 10:37:19 -06:00
|
|
|
$(SASL_LIBS) \
|
|
|
|
$(POPT_LIBS) \
|
2011-11-17 02:38:13 -06:00
|
|
|
$(LIBINTL_LIBS) \
|
2015-11-23 13:50:04 -06:00
|
|
|
$(INI_LIBS) \
|
2007-12-21 10:37:19 -06:00
|
|
|
$(NULL)
|
|
|
|
|
2009-12-04 15:29:09 -06:00
|
|
|
ipa_rmkeytab_SOURCES = \
|
|
|
|
ipa-rmkeytab.c \
|
2010-11-05 03:36:00 -05:00
|
|
|
ipa-client-common.c \
|
2009-12-04 15:29:09 -06:00
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
ipa_rmkeytab_LDADD = \
|
|
|
|
$(KRB5_LIBS) \
|
|
|
|
$(POPT_LIBS) \
|
2011-11-17 02:38:13 -06:00
|
|
|
$(LIBINTL_LIBS) \
|
2009-12-04 15:29:09 -06:00
|
|
|
$(NULL)
|
|
|
|
|
2009-09-14 16:04:08 -05:00
|
|
|
ipa_join_SOURCES = \
|
|
|
|
config.c \
|
2010-11-05 03:36:00 -05:00
|
|
|
ipa-client-common.c \
|
2009-09-14 16:04:08 -05:00
|
|
|
ipa-join.c \
|
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
ipa_join_LDADD = \
|
|
|
|
$(KRB5_LIBS) \
|
|
|
|
$(OPENLDAP_LIBS) \
|
|
|
|
$(SASL_LIBS) \
|
|
|
|
$(CURL_LIBS) \
|
|
|
|
$(XMLRPC_LIBS) \
|
|
|
|
$(POPT_LIBS) \
|
2011-11-17 02:38:13 -06:00
|
|
|
$(LIBINTL_LIBS) \
|
2009-09-14 16:04:08 -05:00
|
|
|
$(NULL)
|
|
|
|
|
0000-12-31 18:09:24 -05:50
|
|
|
SUBDIRS = \
|
2014-11-17 14:19:57 -06:00
|
|
|
../asn1 \
|
2008-02-25 13:56:09 -06:00
|
|
|
man \
|
0000-12-31 18:09:24 -05:50
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
EXTRA_DIST = \
|
Split ipa-client/ into ipaclient/ (Python library) and client/ (C, scripts)
Make ipaclient a Python library like ipapython, ipalib, etc.
Use setup.py instead of autotools for installing it.
Move C client tools, Python scripts, and man pages, to client/.
Remove old, empty or outdated, boilerplate files (NEWS, README, AUTHORS).
Remove /setup-client.py (ipalib/setup.py should be used instead).
Update Makefiles and the spec file accordingly.
https://fedorahosted.org/freeipa/ticket/5638
Reviewed-By: Jan Cholasta <jcholast@redhat.com>
2016-01-14 07:15:49 -06:00
|
|
|
$(sbin_SCRIPTS) \
|
0000-12-31 18:09:24 -05:50
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
DISTCLEANFILES = \
|
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
MAINTAINERCLEANFILES = \
|
|
|
|
*~ \
|
|
|
|
intltool-*.in \
|
|
|
|
compile \
|
|
|
|
configure \
|
2008-05-05 14:25:28 -05:00
|
|
|
COPYING \
|
0000-12-31 18:09:24 -05:50
|
|
|
INSTALL \
|
|
|
|
install-sh \
|
|
|
|
missing \
|
|
|
|
mkinstalldirs \
|
|
|
|
config.guess \
|
|
|
|
ltmain.sh \
|
|
|
|
config.sub \
|
|
|
|
depcomp \
|
|
|
|
Makefile.in \
|
|
|
|
config.h.* \
|
|
|
|
aclocal.m4 \
|
2008-08-08 08:35:05 -05:00
|
|
|
version.m4 \
|
0000-12-31 18:09:24 -05:50
|
|
|
$(NULL)
|
|
|
|
|