mirror of
https://github.com/samba-team/samba.git
synced 2025-01-11 05:18:09 +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
44 lines
842 B
Makefile
44 lines
842 B
Makefile
# $Id$
|
|
|
|
include $(top_srcdir)/Makefile.am.common
|
|
|
|
AM_CPPFLAGS += $(INCLUDE_readline)
|
|
|
|
man_MANS = ktutil.1
|
|
|
|
bin_PROGRAMS = ktutil
|
|
|
|
dist_ktutil_SOURCES = \
|
|
add.c \
|
|
change.c \
|
|
copy.c \
|
|
destroy.c \
|
|
get.c \
|
|
ktutil.c \
|
|
ktutil_locl.h \
|
|
list.c \
|
|
purge.c \
|
|
remove.c \
|
|
rename.c
|
|
|
|
nodist_ktutil_SOURCES = \
|
|
ktutil-commands.c
|
|
|
|
$(ktutil_OBJECTS): ktutil-commands.h
|
|
|
|
CLEANFILES = ktutil-commands.h ktutil-commands.c
|
|
|
|
ktutil-commands.c ktutil-commands.h: ktutil-commands.in
|
|
$(SLC) $(srcdir)/ktutil-commands.in
|
|
|
|
LDADD = \
|
|
$(top_builddir)/lib/kadm5/libkadm5clnt.la \
|
|
$(top_builddir)/lib/krb5/libkrb5.la \
|
|
$(LIB_hcrypto) \
|
|
$(top_builddir)/lib/asn1/libasn1.la \
|
|
$(top_builddir)/lib/sl/libsl.la \
|
|
$(LIB_readline) \
|
|
$(LIB_roken)
|
|
|
|
EXTRA_DIST = NTMakefile ktutil-version.rc $(man_MANS) ktutil-commands.in
|