36 lines
1.2 KiB
Plaintext
36 lines
1.2 KiB
Plaintext
Index: src/kadmin/dbutil/Makefile.in
|
|
===================================================================
|
|
--- src/kadmin/dbutil/Makefile.in.orig
|
|
+++ src/kadmin/dbutil/Makefile.in
|
|
@@ -19,21 +19,28 @@ SRCS = kdb5_util.c kdb5_create.c kadm5_c
|
|
|
|
OBJS = kdb5_util.o kdb5_create.o kadm5_create.o string_table.o kdb5_destroy.o kdb5_stash.o import_err.o strtok.o dump.o ovload.o
|
|
|
|
-all:: $(PROG)
|
|
+all:: $(PROG) EncryptWithMasterKey
|
|
|
|
$(PROG): $(OBJS) $(KADMSRV_DEPLIBS) $(KRB4COMPAT_DEPLIBS)
|
|
$(CC_LINK) -o $(PROG) $(OBJS) $(KADMSRV_LIBS) $(KDB_DEP_LIB) $(KRB4COMPAT_LIBS)
|
|
|
|
+EncryptWithMasterKey: EncryptWithMasterKey.o
|
|
+ $(CC_LINK) -o EncryptWithMasterKey EncryptWithMasterKey.o $(KRB5_BASE_LIBS)
|
|
+
|
|
+EncryptWithMasterKey.o: EncryptWithMasterKey.c
|
|
+
|
|
+
|
|
import_err.c import_err.h: $(srcdir)/import_err.et
|
|
|
|
$(OBJS): import_err.h
|
|
|
|
install::
|
|
$(INSTALL_PROGRAM) $(PROG) ${DESTDIR}$(ADMIN_BINDIR)/$(PROG)
|
|
+ $(INSTALL_PROGRAM) EncryptWithMasterKey ${DESTDIR}$(ADMIN_BINDIR)/EncryptWithMasterKey
|
|
$(INSTALL_DATA) $(srcdir)/$(PROG).M ${DESTDIR}$(ADMIN_MANDIR)/$(PROG).8
|
|
|
|
clean::
|
|
- $(RM) $(PROG) $(OBJS) import_err.c import_err.h
|
|
+ $(RM) $(PROG) $(OBJS) import_err.c import_err.h EncryptWithMasterKey EncryptWithMasterKey.o
|
|
|
|
# +++ Dependency line eater +++
|
|
#
|