mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-27 09:21:59 -06:00
62d40286ac
When we un-enroll a client we'll do a bit of cleanup including removing any principals for the IPA realm from /etc/krb5.keytab. This removes principals in 2 ways: - By principal, only entries matching the full principal are removed - By realm. Any principal for that realm is removed This does not change the KDC at all, just removes entries from a file on the client machine.
126 lines
2.2 KiB
Makefile
126 lines
2.2 KiB
Makefile
# This file will be processed with automake-1.7 to create Makefile.in
|
|
|
|
AUTOMAKE_OPTIONS = 1.7
|
|
|
|
NULL =
|
|
|
|
INCLUDES = \
|
|
-I. \
|
|
-I$(srcdir) \
|
|
-DPREFIX=\""$(prefix)"\" \
|
|
-DBINDIR=\""$(bindir)"\" \
|
|
-DLIBDIR=\""$(libdir)"\" \
|
|
-DLIBEXECDIR=\""$(libexecdir)"\" \
|
|
-DDATADIR=\""$(datadir)"\" \
|
|
$(KRB5_CFLAGS) \
|
|
$(OPENLDAP_CFLAGS) \
|
|
$(MOZLDAP_CFLAGS) \
|
|
$(SASL_CFLAGS) \
|
|
$(POPT_CFLAGS) \
|
|
$(WARN_CFLAGS) \
|
|
$(NULL)
|
|
|
|
sbin_PROGRAMS = \
|
|
ipa-getkeytab \
|
|
ipa-rmkeytab \
|
|
ipa-join \
|
|
$(NULL)
|
|
|
|
ipa_getkeytab_SOURCES = \
|
|
ipa-getkeytab.c \
|
|
$(NULL)
|
|
|
|
ipa_getkeytab_LDADD = \
|
|
$(KRB5_LIBS) \
|
|
$(OPENLDAP_LIBS) \
|
|
$(MOZLDAP_LIBS) \
|
|
$(SASL_LIBS) \
|
|
$(POPT_LIBS) \
|
|
$(NULL)
|
|
|
|
ipa_rmkeytab_SOURCES = \
|
|
ipa-rmkeytab.c \
|
|
$(NULL)
|
|
|
|
ipa_rmkeytab_LDADD = \
|
|
$(KRB5_LIBS) \
|
|
$(POPT_LIBS) \
|
|
$(NULL)
|
|
|
|
ipa_join_SOURCES = \
|
|
config.c \
|
|
ipa-join.c \
|
|
$(NULL)
|
|
|
|
ipa_join_LDADD = \
|
|
$(KRB5_LIBS) \
|
|
$(OPENLDAP_LIBS) \
|
|
$(SASL_LIBS) \
|
|
$(CURL_LIBS) \
|
|
$(XMLRPC_LIBS) \
|
|
$(POPT_LIBS) \
|
|
$(NULL)
|
|
|
|
SUBDIRS = \
|
|
firefox \
|
|
ipaclient \
|
|
ipa-install \
|
|
man \
|
|
$(NULL)
|
|
|
|
EXTRA_DIST = \
|
|
ipa-client.spec \
|
|
COPYING \
|
|
AUTHORS \
|
|
INSTALL \
|
|
README \
|
|
HACKING \
|
|
NEWS \
|
|
ChangeLog \
|
|
$(NULL)
|
|
|
|
DISTCLEANFILES = \
|
|
$(NULL)
|
|
|
|
MAINTAINERCLEANFILES = \
|
|
*~ \
|
|
intltool-*.in \
|
|
compile \
|
|
configure \
|
|
COPYING \
|
|
INSTALL \
|
|
install-sh \
|
|
missing \
|
|
mkinstalldirs \
|
|
config.guess \
|
|
ltmain.sh \
|
|
config.sub \
|
|
depcomp \
|
|
Makefile.in \
|
|
config.h.* \
|
|
aclocal.m4 \
|
|
version.m4 \
|
|
ipa-client.spec \
|
|
py-compile \
|
|
$(NULL)
|
|
|
|
# Creating ChangeLog from hg log (taken from cairo/Makefile.am):
|
|
|
|
ChangeLog: $(srcdir)/ChangeLog
|
|
|
|
$(srcdir)/ChangeLog:
|
|
@if test -d "$(srcdir)/../.hg"; then \
|
|
(cd "$(srcdir)" && \
|
|
./missing --run hg log --verbose) | fmt --split-only > $@.tmp \
|
|
&& mv -f $@.tmp $@ \
|
|
|| ($(RM) $@.tmp; \
|
|
echo Failed to generate ChangeLog, your ChangeLog may be outdated >&2; \
|
|
(test -f $@ || echo hg log is required to generate this file >> $@)); \
|
|
else \
|
|
test -f $@ || \
|
|
(echo A hg checkout and hg -log is required to generate ChangeLog >&2 && \
|
|
echo A hg checkout and hg log is required to generate this file >> $@); \
|
|
fi
|
|
|
|
.PHONY: ChangeLog $(srcdir)/ChangeLog
|