*** empty log message ***
authorJohn Kohl <jtkohl@mit.edu>
Fri, 26 Apr 1991 16:31:36 +0000 (16:31 +0000)
committerJohn Kohl <jtkohl@mit.edu>
Fri, 26 Apr 1991 16:31:36 +0000 (16:31 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@2044 dc483132-0cff-0310-8789-dd5450dbe970

src/appl/user_user/Imakefile [new file with mode: 0644]

diff --git a/src/appl/user_user/Imakefile b/src/appl/user_user/Imakefile
new file mode 100644 (file)
index 0000000..ba801b1
--- /dev/null
@@ -0,0 +1,33 @@
+#      $Source$
+#      $Author$
+#      $Id$
+#
+#  Copyright 1991 by the Massachusetts Institute of Technology.
+#  All Rights Reserved.
+# 
+#  For copying and distribution information, please see the file
+#  <krb5/copyright.h>.
+# 
+
+        DEPLIBS = $(DEPKLIB)
+LOCAL_LIBRARIES = $(KLIB)
+        DEFINES = -DDEBUG
+CDEBUGFLAGS = -g
+
+SERVERSRCS = server.c
+SERVEROBJS = server.o
+
+CLIENTSRCS = client.c
+CLIENTOBJS = client.o
+
+all:: uuclient uuserver
+
+NormalProgramTarget(uuclient,$(CLIENTOBJS),$(DEPLIBS),$(LOCAL_LIBRARIES),)
+
+NormalProgramTarget(uuserver,$(SERVEROBJS),$(DEPLIBS),$(LOCAL_LIBRARIES),)
+
+SaberProgramTarget(uuclient, $(CLIENTSRCS), $(CLIENTOBJS), 
+       $(DEPLIBS) $(LOCAL_LIBRARIES),)
+SaberProgramTarget(uuserver, $(SERVERSRCS), $(SERVEROBJS), 
+       $(DEPLIBS) $(LOCAL_LIBRARIES),)
+