mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
7055827b8f
This makes it clearer that we always want to do heimdal changes via the lorikeet-heimdal repository. Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Joseph Sutton <josephsutton@catalyst.net.nz> Autobuild-User(master): Joseph Sutton <jsutton@samba.org> Autobuild-Date(master): Wed Jan 19 21:41:59 UTC 2022 on sn-devel-184
47 lines
935 B
Makefile
47 lines
935 B
Makefile
# $Id: Makefile.am 20739 2007-05-31 16:53:21Z lha $
|
|
|
|
include $(top_srcdir)/Makefile.am.common
|
|
|
|
noinst_DATA = krb5.conf
|
|
|
|
check_SCRIPTS = $(SCRIPT_TESTS)
|
|
|
|
SCRIPT_TESTS = check-kinit
|
|
|
|
TESTS = $(SCRIPT_TESTS)
|
|
|
|
port = 49188
|
|
|
|
do_subst = sed -e 's,[@]srcdir[@],$(srcdir),g' \
|
|
-e 's,[@]env_setup[@],$(top_builddir)/tests/bin/setup-env,g' \
|
|
-e 's,[@]port[@],$(port),g' \
|
|
-e 's,[@]objdir[@],$(top_builddir)/tests/java,g'
|
|
|
|
LDADD = ../../lib/krb5/libkrb5.la $(LIB_roken)
|
|
|
|
check-kinit: check-kinit.in Makefile
|
|
$(do_subst) < $(srcdir)/check-kinit.in > check-kinit.tmp
|
|
chmod +x check-kinit.tmp
|
|
mv check-kinit.tmp check-kinit
|
|
|
|
krb5.conf: krb5.conf.in Makefile
|
|
$(do_subst) < $(srcdir)/krb5.conf.in > krb5.conf.tmp
|
|
mv krb5.conf.tmp krb5.conf
|
|
|
|
CLEANFILES= \
|
|
$(TESTS) \
|
|
*.tmp \
|
|
*.class \
|
|
current-db* \
|
|
krb5.conf \
|
|
messages.log
|
|
|
|
|
|
EXTRA_DIST = \
|
|
NTMakefile \
|
|
KerberosInit.java \
|
|
jaas.conf \
|
|
check-kinit.in \
|
|
have-java.sh \
|
|
krb5.conf.in
|