diff options
| author | John Kohl <jtkohl@mit.edu> | 1991-04-26 16:31:36 +0000 |
|---|---|---|
| committer | John Kohl <jtkohl@mit.edu> | 1991-04-26 16:31:36 +0000 |
| commit | 251d6534ea9148bcddcd9601e390832bf9d847d2 (patch) | |
| tree | c36f332caef7187108adfe9a05e7f12713eb7dae /src/appl/user_user | |
| parent | f4deb6d8769bb95effa8e8e5b02345d515887b33 (diff) | |
| download | krb5-251d6534ea9148bcddcd9601e390832bf9d847d2.tar.gz krb5-251d6534ea9148bcddcd9601e390832bf9d847d2.tar.xz krb5-251d6534ea9148bcddcd9601e390832bf9d847d2.zip | |
*** empty log message ***
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@2044 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/appl/user_user')
| -rw-r--r-- | src/appl/user_user/Imakefile | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/src/appl/user_user/Imakefile b/src/appl/user_user/Imakefile new file mode 100644 index 000000000..ba801b192 --- /dev/null +++ b/src/appl/user_user/Imakefile @@ -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),) + |
