minix/crypto/external/bsd/heimdal/dist/tests/gss/Makefile.am
Lionel Sambuc 0a6a1f1d05 NetBSD re-synchronization of the source tree
This brings our tree to NetBSD 7.0, as found on -current on the
10-10-2015.

This updates:
 - LLVM to 3.6.1
 - GCC to GCC 5.1
 - Replace minix/commands/zdump with usr.bin/zdump
 - external/bsd/libelf has moved to /external/bsd/elftoolchain/
 - Import ctwm
 - Drop sprintf from libminc

Change-Id: I149836ac18e9326be9353958bab9b266efb056f0
2016-01-13 20:32:14 +01:00

82 lines
1.9 KiB
Makefile

# Id
include $(top_srcdir)/Makefile.am.common
noinst_DATA = krb5.conf
SCRIPT_TESTS = check-gss check-gssmask check-context check-spnego check-ntlm
TESTS = $(SCRIPT_TESTS)
check_SCRIPTS = $(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/gss,g'
check-gss: check-gss.in Makefile
$(do_subst) < $(srcdir)/check-gss.in > check-gss.tmp
chmod +x check-gss.tmp
mv check-gss.tmp check-gss
check-gssmask: check-gssmask.in Makefile
$(do_subst) < $(srcdir)/check-gssmask.in > check-gssmask.tmp
chmod +x check-gssmask.tmp
mv check-gssmask.tmp check-gssmask
check-context: check-context.in Makefile
$(do_subst) < $(srcdir)/check-context.in > check-context.tmp
chmod +x check-context.tmp
mv check-context.tmp check-context
check-spnego: check-spnego.in Makefile
$(do_subst) < $(srcdir)/check-spnego.in > check-spnego.tmp
chmod +x check-spnego.tmp
mv check-spnego.tmp check-spnego
check-basic: check-basic.in Makefile
$(do_subst) < $(srcdir)/check-basic.in > check-basic.tmp
chmod +x check-basic.tmp
mv check-basic.tmp check-basic
check-ntlm: check-ntlm.in Makefile
$(do_subst) < $(srcdir)/check-ntlm.in > check-ntlm.tmp
chmod +x check-ntlm.tmp
mv check-ntlm.tmp check-ntlm
krb5.conf: krb5.conf.in Makefile
$(do_subst) < $(srcdir)/krb5.conf.in > krb5.conf.tmp
mv krb5.conf.tmp krb5.conf
CLEANFILES= \
$(TESTS) \
foopassword \
barpassword \
krb5ccfile \
krb5ccfile-ds \
server.keytab \
krb5.conf \
current-db* \
*.log \
tempfile \
check-basic.tmp \
check-gss.tmp \
check-gssmask.tmp \
check-spnego.tmp \
check-ntlm.tmp \
check-context.tmp
EXTRA_DIST = \
NTMakefile \
check-basic.in \
check-gss.in \
check-gssmask.in \
check-spnego.in \
check-ntlm.in \
check-context.in \
ntlm-user-file.txt \
krb5.conf.in