0000-12-31 18:09:24 -05:50
|
|
|
# This file will be processed with automake-1.7 to create Makefile.in
|
|
|
|
|
2016-10-18 05:02:42 -05:00
|
|
|
AUTOMAKE_OPTIONS = 1.7 subdir-objects
|
0000-12-31 18:09:24 -05:50
|
|
|
|
|
|
|
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
|
|
|
|
|
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$(srcdir) \
|
2016-10-31 06:33:43 -05:00
|
|
|
-I$(top_srcdir)/util \
|
|
|
|
-I$(top_srcdir)/asn1 \
|
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) \
|
2016-10-14 03:20:43 -05:00
|
|
|
$(LDAP_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-certupdate \
|
2018-08-22 10:15:55 -05:00
|
|
|
ipa-client-automount \
|
|
|
|
ipa-client-install \
|
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
|
|
|
$(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 = \
|
2016-10-31 06:33:43 -05:00
|
|
|
$(top_builddir)/asn1/libipaasn1.la \
|
|
|
|
$(top_builddir)/util/libutil.la \
|
2007-12-21 10:37:19 -06:00
|
|
|
$(KRB5_LIBS) \
|
2016-10-14 03:20:43 -05:00
|
|
|
$(LDAP_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 = \
|
2018-02-21 08:32:07 -06:00
|
|
|
$(top_builddir)/util/libutil.la \
|
2009-09-14 16:04:08 -05:00
|
|
|
$(KRB5_LIBS) \
|
2016-10-14 03:20:43 -05:00
|
|
|
$(LDAP_LIBS) \
|
2009-09-14 16:04:08 -05:00
|
|
|
$(SASL_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 = \
|
2018-05-22 03:58:51 -05:00
|
|
|
share \
|
2008-02-25 13:56:09 -06:00
|
|
|
man \
|
0000-12-31 18:09:24 -05:50
|
|
|
$(NULL)
|
|
|
|
|
2016-11-02 11:36:48 -05:00
|
|
|
noinst_HEADERS = \
|
|
|
|
ipa-client-common.h
|
|
|
|
|
0000-12-31 18:09:24 -05:50
|
|
|
EXTRA_DIST = \
|
2018-08-22 10:15:55 -05:00
|
|
|
ipa-certupdate.in \
|
|
|
|
ipa-client-automount.in \
|
|
|
|
ipa-client-install.in \
|
0000-12-31 18:09:24 -05:50
|
|
|
$(NULL)
|
|
|
|
|
2016-11-10 05:07:03 -06:00
|
|
|
install-data-hook:
|
|
|
|
$(INSTALL) -d -m 755 $(DESTDIR)$(IPA_SYSCONF_DIR)/nssdb
|
2017-05-03 01:48:57 -05:00
|
|
|
$(INSTALL) -d -m 755 $(DESTDIR)$(localstatedir)/lib/ipa-client/pki
|
2016-11-10 05:07:03 -06:00
|
|
|
$(INSTALL) -d -m 755 $(DESTDIR)$(localstatedir)/lib/ipa-client/sysrestore
|
2018-08-22 10:15:55 -05:00
|
|
|
|
|
|
|
|
|
|
|
PYTHON_SHEBANG = $(sbin_SCRIPTS)
|
|
|
|
|
|
|
|
include $(top_srcdir)/Makefile.pythonscripts.am
|