34 lines
1.1 KiB
Plaintext
34 lines
1.1 KiB
Plaintext
|
--- src/kadmin/dbutil/Makefile.in
|
||
|
+++ src/kadmin/dbutil/Makefile.in 2006/06/02 11:40:51
|
||
|
@@ -22,21 +22,28 @@
|
||
|
|
||
|
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 +++
|
||
|
#
|