From 251d6534ea9148bcddcd9601e390832bf9d847d2 Mon Sep 17 00:00:00 2001 From: John Kohl Date: Fri, 26 Apr 1991 16:31:36 +0000 Subject: *** empty log message *** git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@2044 dc483132-0cff-0310-8789-dd5450dbe970 --- src/appl/user_user/Imakefile | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 src/appl/user_user/Imakefile (limited to 'src') 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 +# . +# + + 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),) + -- cgit