
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
46 lines
869 B
Makefile
46 lines
869 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,[@]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
|