summaryrefslogtreecommitdiffstats
path: root/src/lib
diff options
context:
space:
mode:
authorMark Eichin <eichin@mit.edu>1994-08-09 22:57:29 +0000
committerMark Eichin <eichin@mit.edu>1994-08-09 22:57:29 +0000
commiteba0f8da0c194962b43d7fa40344cecf06386d58 (patch)
tree07f1730176661f38783a1e832e44c27a25933969 /src/lib
parente5fed0994ff3e5c73052fff3a8a9bce41192fd21 (diff)
downloadkrb5-eba0f8da0c194962b43d7fa40344cecf06386d58.tar.gz
krb5-eba0f8da0c194962b43d7fa40344cecf06386d58.tar.xz
krb5-eba0f8da0c194962b43d7fa40344cecf06386d58.zip
stamp..
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@4101 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/Imakefile44
-rw-r--r--src/lib/crypto/Imakefile51
-rw-r--r--src/lib/crypto/des/Imakefile135
-rw-r--r--src/lib/gssapi/Imakefile39
-rw-r--r--src/lib/krb5/Imakefile104
-rw-r--r--src/lib/krb5/ccache/Imakefile42
-rw-r--r--src/lib/krb5/keytab/Imakefile51
7 files changed, 0 insertions, 466 deletions
diff --git a/src/lib/Imakefile b/src/lib/Imakefile
deleted file mode 100644
index 24660fdb3..000000000
--- a/src/lib/Imakefile
+++ /dev/null
@@ -1,44 +0,0 @@
-# $Source$
-# $Author$
-# $Id$
-#
-# Copyright 1990,1991 by the Massachusetts Institute of Technology.
-# All Rights Reserved.
-#
-# Export of this software from the United States of America may
-# require a specific license from the United States Government.
-# It is the responsibility of any person or organization contemplating
-# export to obtain such a license before exporting.
-#
-# WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
-# distribute this software and its documentation for any purpose and
-# without fee is hereby granted, provided that the above copyright
-# notice appear in all copies and that both that copyright notice and
-# this permission notice appear in supporting documentation, and that
-# the name of M.I.T. not be used in advertising or publicity pertaining
-# to distribution of the software without specific, written prior
-# permission. M.I.T. makes no representations about the suitability of
-# this software for any purpose. It is provided "as is" without express
-# or implied warranty.
-#
-#
-#define IHaveSubdirs
-#define PassCDebugFlags
-
-SUBDIRS = krb5 kdb des425 krb425 crypto gssapi
-
-MakeSubdirs($(SUBDIRS))
-
-all:: libkrb5.a libcrypto.a
-
-
-LinkFile(libkrb5.a, krb5/libkrb5.a)
-LinkFile(libcrypto.a, crypto/libcrypto.a)
-
-#if BuildGssapi
-all:: libgssapi_krb5.a
-LinkFile(libgssapi_krb5.a, gssapi/libgssapi_krb5.a)
-#endif
-
-Krb5InstallLibrary(krb425,$(KRB5_LIBDIR))
-Krb5InstallLibrary(des425,$(KRB5_LIBDIR))
diff --git a/src/lib/crypto/Imakefile b/src/lib/crypto/Imakefile
deleted file mode 100644
index c171d925e..000000000
--- a/src/lib/crypto/Imakefile
+++ /dev/null
@@ -1,51 +0,0 @@
-# $Source$
-# $Author$
-# $Id$
-#
-# Copyright 1990,1991 by the Massachusetts Institute of Technology.
-# All Rights Reserved.
-#
-# Export of this software from the United States of America may
-# require a specific license from the United States Government.
-# It is the responsibility of any person or organization contemplating
-# export to obtain such a license before exporting.
-#
-# WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
-# distribute this software and its documentation for any purpose and
-# without fee is hereby granted, provided that the above copyright
-# notice appear in all copies and that both that copyright notice and
-# this permission notice appear in supporting documentation, and that
-# the name of M.I.T. not be used in advertising or publicity pertaining
-# to distribution of the software without specific, written prior
-# permission. M.I.T. makes no representations about the suitability of
-# this software for any purpose. It is provided "as is" without express
-# or implied warranty.
-#
-#
-#define IHaveSubdirs
-#define PassCDebugFlags
-
-SUBDIRS = des crc32 md4 md5 os
-
-MakeSubdirs($(SUBDIRS))
-
-NormalLibraryObjectRule()
-
-OBJS= cryptoconf.o
-SRCS= cryptoconf.c
-
-libcrypto.a: des/DONE md4/DONE md5/DONE crc32/DONE os/DONE $(OBJS)
- (cd des; $(ARADD) ../$@ `cat DONE`)
- (cd crc32; $(ARADD) ../$@ `cat DONE`)
- (cd md4; $(ARADD) ../$@ `cat DONE`)
- (cd md5; $(ARADD) ../$@ `cat DONE`)
- (cd os; $(ARADD) ../$@ `cat DONE`)
- $(ARADD) $@ $(OBJS)
- RanLibrary($@)
-
-all:: libcrypto.a
-
-Krb5InstallLibrary($(DESLIB),$(KRB5_LIBDIR))
-
-clean::
- $(RM) libcrypto.a
diff --git a/src/lib/crypto/des/Imakefile b/src/lib/crypto/des/Imakefile
deleted file mode 100644
index c7303d89a..000000000
--- a/src/lib/crypto/des/Imakefile
+++ /dev/null
@@ -1,135 +0,0 @@
-# $Source$
-# $Author$
-# $Id$
-#
-# Copyright 1990 by the Massachusetts Institute of Technology.
-# All Rights Reserved.
-#
-# Export of this software from the United States of America may
-# require a specific license from the United States Government.
-# It is the responsibility of any person or organization contemplating
-# export to obtain such a license before exporting.
-#
-# WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
-# distribute this software and its documentation for any purpose and
-# without fee is hereby granted, provided that the above copyright
-# notice appear in all copies and that both that copyright notice and
-# this permission notice appear in supporting documentation, and that
-# the name of M.I.T. not be used in advertising or publicity pertaining
-# to distribution of the software without specific, written prior
-# permission. M.I.T. makes no representations about the suitability of
-# this software for any purpose. It is provided "as is" without express
-# or implied warranty.
-#
-#
-NormalLibraryObjectRule()
-
-OBJS= cksum.o \
- des.o \
- cbc_cksum.o \
- cs_entry.o \
- enc_dec.o \
- krb_glue.o \
- finish_key.o \
- fin_rndkey.o \
- init_rkey.o \
- process_ky.o \
- random_key.o \
- string2key.o \
- key_parity.o \
- key_sched.o \
- new_rn_key.o \
- weak_key.o
-
-SRCS= $(SRCDIR)cksum.c \
- $(SRCDIR)des.c \
- $(SRCDIR)cs_entry.c \
- $(SRCDIR)cbc_cksum.c \
- $(SRCDIR)enc_dec.c \
- $(SRCDIR)krb_glue.c \
- $(SRCDIR)finish_key.c \
- $(SRCDIR)fin_rndkey.c \
- $(SRCDIR)init_rkey.c \
- $(SRCDIR)process_ky.c \
- $(SRCDIR)random_key.c \
- $(SRCDIR)string2key.c \
- $(SRCDIR)key_parity.c \
- $(SRCDIR)key_sched.c \
- $(SRCDIR)new_rn_key.c \
- $(SRCDIR)weak_key.c
-
-DEFINES = $(DESDEFINES)
-
-INCLUDES = -I.
-
-VERIFYOBJ = verify.o
-
-DESTESTOBJ = destest.o
-
-includes::
-
-all::
-includes:: key_perm.h odd.h p_table.h s_table.h
-depend:: fp.c ip.c p.c
-depend:: des.c $(SRCS)
-
-SubdirLibraryRule($(OBJS))
-
-DependTarget()
-
-$(OBJS): fp.c ip.c key_perm.h odd.h p.c p_table.h s_table.h
-
-clean::
- $(RM) fp.c ip.c key_perm.h odd.h p.c p_table.h s_table.h
-
-EXT_LIB = $(TOP)/lib/krb5/error_tables/krb5_err.o \
- $(TOP)/lib/krb5/error_tables/isode_err.o \
- $(TOP)/lib/crypto/cryptoconf.o \
- $(TOP)/lib/crypto/crc-32/libcrc32.a \
- libdes.a $(OSLIB) $(COMERRLIB)
-
-NormalProgramTarget(verify,$(VERIFYOBJ),libdes.a,$(EXT_LIB),)
-
-NormalProgramTarget(destest,$(DESTESTOBJ),libdes.a,$(EXT_LIB),)
-
-NormalProgramTarget(make_e,make_e.o,misc.o,misc.o,)
-
-NormalProgramTarget(make_fp,make_fp.o,misc.o,misc.o,)
-
-fp.c: make_fp
- ./make_fp fp.c
-
-NormalProgramTarget(make_ip,make_ip.o,misc.o,misc.o,)
-
-ip.c: make_ip
- ./make_ip ip.c
-
-NormalProgramTarget(make_kp,make_kp.o,misc.o,misc.o,)
-
-key_perm.h: make_kp
- ./make_kp key_perm.h
-
-NormalProgramTarget(make_odd,make_odd.o,misc.o,misc.o,)
-
-odd.h: make_odd
- ./make_odd odd.h
-
-NormalProgramTarget(make_p,make_p.o,misc.o,misc.o,)
-
-p.c: make_p
- ./make_p p.c
-
-NormalProgramTarget(make_pt,make_pt.o,misc.o,misc.o,)
-
-p_table.h: make_pt
- ./make_pt p_table.h
-
-NormalProgramTarget(make_s,make_s.o,misc.o,misc.o,)
-
-NormalProgramTarget(make_st,make_st.o,misc.o,misc.o,)
-
-s_table.h: make_st
- ./make_st s_table.h
-
-NormalLintTarget($(SRCS))
-
diff --git a/src/lib/gssapi/Imakefile b/src/lib/gssapi/Imakefile
deleted file mode 100644
index 78b4c14e6..000000000
--- a/src/lib/gssapi/Imakefile
+++ /dev/null
@@ -1,39 +0,0 @@
-# $Source$
-# $Author$
-# $Id$
-#
-# Copyright 1993 by the Massachusetts Institute of Technology.
-# All Rights Reserved.
-#
-# Export of this software from the United States of America may
-# require a specific license from the United States Government.
-# It is the responsibility of any person or organization contemplating
-# export to obtain such a license before exporting.
-#
-# WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
-# distribute this software and its documentation for any purpose and
-# without fee is hereby granted, provided that the above copyright
-# notice appear in all copies and that both that copyright notice and
-# this permission notice appear in supporting documentation, and that
-# the name of M.I.T. not be used in advertising or publicity pertaining
-# to distribution of the software without specific, written prior
-# permission. M.I.T. makes no representations about the suitability of
-# this software for any purpose. It is provided "as is" without express
-# or implied warranty.
-#
-#
-#define IHaveSubdirs
-#define PassCDebugFlags
-
-SUBDIRS = generic krb5
-
-MakeSubdirs($(SUBDIRS))
-
-libgssapi_krb5.a: generic/DONE krb5/DONE
- (cd generic; $(ARADD) ../$@ `cat DONE`)
- (cd krb5; $(ARADD) ../$@ `cat DONE`)
- RanLibrary($@)
-
-all:: libgssapi_krb5.a
-
-Krb5InstallLibrary(gssapi_krb5,$(KRB5_LIBDIR))
diff --git a/src/lib/krb5/Imakefile b/src/lib/krb5/Imakefile
deleted file mode 100644
index 2f030bdbd..000000000
--- a/src/lib/krb5/Imakefile
+++ /dev/null
@@ -1,104 +0,0 @@
-# $Source$
-# $Author$
-# $Id$
-#
-# Copyright 1990,1991 by the Massachusetts Institute of Technology.
-# All Rights Reserved.
-#
-# Export of this software from the United States of America may
-# require a specific license from the United States Government.
-# It is the responsibility of any person or organization contemplating
-# export to obtain such a license before exporting.
-#
-# WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
-# distribute this software and its documentation for any purpose and
-# without fee is hereby granted, provided that the above copyright
-# notice appear in all copies and that both that copyright notice and
-# this permission notice appear in supporting documentation, and that
-# the name of M.I.T. not be used in advertising or publicity pertaining
-# to distribution of the software without specific, written prior
-# permission. M.I.T. makes no representations about the suitability of
-# this software for any purpose. It is provided "as is" without express
-# or implied warranty.
-#
-#
-#define IHaveSubdirs
-#define PassCDebugFlags
-
-SUBDIRS1 = error_tables
-SUBDIRS2 = ccache keytab krb rcache free os posix
-SUBDIRS = $(SUBDIRS1) asn.1 $(SUBDIRS2)
-
-MakeSubdirs($(SUBDIRS))
-
-#ifdef UseSedHack
-
-/* Imake using System V derived cpp generates a bad Makefile. */
-
-/* This target will make all Makefiles except asn.1/Makefile. */
-#undef MakefileSubdirs
-#define MakefileSubdirs(dirs) @@\
-MakeMakeSubdirs($(SUBDIRS1) $(SUBDIRS2), Makefiles) @@\
- @@\
-MakeNsubdirMakefiles()
-
-#ifdef SourceTop
- IMAKEARG = -f/**/SourceTop/CURDIR/asn.1/Imakefile
-#endif
-
-Makefiles:: asn.1/Makefile
-
-asn.1/Makefile::
- @case '${MFLAGS}' in *[ik]*) set +e;; esac; \
- case '${MFLAGS}' in *n*) executeit="no";; esac; \
- case $(TOP) in \
- /?*) imaketop=$(TOP) ; top=$(TOP) ;; \
- *) imaketop=../ ; top=../$(TOP) ;; \
- esac; \
- echo "making asn.1/Makefile..."; \
- i=asn.1 ; \
- cd $$i; \
- $(RM) Makefile.bak; \
- if [ -f Makefile ]; then \
- echo " $(MV) Makefile Makefile.bak"; \
- if [ "$$executeit" != "no" ]; then \
- $(MV) Makefile Makefile.bak; \
- fi; \
- fi; \
- if [ "$$executeit" != "no" ]; then \
- curdir=$(CURRENT_DIR)/; \
- $(IMAKE_CMD) -DTOPDIR=$$top -DCURDIR=CURDIR/$$i -f$(SRCSUBDIR)Imakefile -s Makefile.new; \
- sed 's/^@/ @/' Makefile.new > Makefile.newer && $(MV) Makefile.newer Makefile.new ; \
- $(MAKE) -f Makefile.new noop; \
- if [ -f Makefile ]; then \
- $(RM) Makefile.bak; $(MV) Makefile Makefile.bak; \
- fi ; \
- $(MV) Makefile.new Makefile; \
- $(RM) Makefile.new Makefile.newer; \
- fi
-
-#endif /* UseSedHack */
-
-libkrb5.a: error_tables/DONE asn.1/DONE ccache/DONE ccache/stdio/DONE \
- ccache/file/DONE keytab/DONE keytab/file/DONE krb/DONE \
- rcache/DONE free/DONE os/DONE posix/DONE
- (cd error_tables; $(ARADD) ../$@ `cat DONE`)
- (cd asn.1; $(ARADD) ../$@ `cat DONE`)
- (cd ccache; $(ARADD) ../$@ `cat DONE`)
- (cd ccache/stdio; $(ARADD) ../../$@ `cat DONE`)
- (cd ccache/file; $(ARADD) ../../$@ `cat DONE`)
- (cd keytab; $(ARADD) ../$@ `cat DONE`)
- (cd keytab/file; $(ARADD) ../../$@ `cat DONE`)
- (cd krb; $(ARADD) ../$@ `cat DONE`)
- (cd rcache; $(ARADD) ../$@ `cat DONE`)
- (cd free; $(ARADD) ../$@ `cat DONE`)
- (cd os; $(ARADD) ../$@ `cat DONE`)
- (cd posix; $(ARADD) ../$@ `cat DONE`)
- RanLibrary($@)
-
-all:: libkrb5.a
-
-Krb5InstallLibrary(krb5,$(KRB5_LIBDIR))
-
-# SharedLibraryTarget(kdb5,-L$(KRB5_LIBDIR) -Lshared $(LDLOCATIONS) -lkrb5 -l$(DESLIB) $(ISODELIB) -lcom_err)
-/* SharedLibraryTarget(des425,-L$(KRB5_LIBDIR) -Lshared $(LDLOCATIONS) -l$(DESLIB)) */
diff --git a/src/lib/krb5/ccache/Imakefile b/src/lib/krb5/ccache/Imakefile
deleted file mode 100644
index 77b0a2d64..000000000
--- a/src/lib/krb5/ccache/Imakefile
+++ /dev/null
@@ -1,42 +0,0 @@
-# $Source$
-# $Author$
-# $Id$
-#
-# Copyright 1990 by the Massachusetts Institute of Technology.
-# All Rights Reserved.
-#
-# Export of this software from the United States of America may
-# require a specific license from the United States Government.
-# It is the responsibility of any person or organization contemplating
-# export to obtain such a license before exporting.
-#
-# WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
-# distribute this software and its documentation for any purpose and
-# without fee is hereby granted, provided that the above copyright
-# notice appear in all copies and that both that copyright notice and
-# this permission notice appear in supporting documentation, and that
-# the name of M.I.T. not be used in advertising or publicity pertaining
-# to distribution of the software without specific, written prior
-# permission. M.I.T. makes no representations about the suitability of
-# this software for any purpose. It is provided "as is" without express
-# or implied warranty.
-#
-#
-#define IHaveSubdirs
-#define PassCDebugFlags
-
- SUBDIRS = file stdio
-
-MakeSubdirs($(SUBDIRS))
-
-NormalLibraryObjectRule()
-
-OBJS= ccbase.o \
- ccdefault.o \
- ccdefops.o
-
-SRCS= $(SRCDIR)ccbase.c \
- $(SRCDIR)ccdefault.c \
- $(SRCDIR)ccdefops.c
-
-SubdirLibraryRule($(OBJS))
diff --git a/src/lib/krb5/keytab/Imakefile b/src/lib/krb5/keytab/Imakefile
deleted file mode 100644
index 91793e0cd..000000000
--- a/src/lib/krb5/keytab/Imakefile
+++ /dev/null
@@ -1,51 +0,0 @@
-# $Source$
-# $Author$
-# $Id$
-#
-# Copyright 1990 by the Massachusetts Institute of Technology.
-# All Rights Reserved.
-#
-# Export of this software from the United States of America may
-# require a specific license from the United States Government.
-# It is the responsibility of any person or organization contemplating
-# export to obtain such a license before exporting.
-#
-# WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
-# distribute this software and its documentation for any purpose and
-# without fee is hereby granted, provided that the above copyright
-# notice appear in all copies and that both that copyright notice and
-# this permission notice appear in supporting documentation, and that
-# the name of M.I.T. not be used in advertising or publicity pertaining
-# to distribution of the software without specific, written prior
-# permission. M.I.T. makes no representations about the suitability of
-# this software for any purpose. It is provided "as is" without express
-# or implied warranty.
-#
-#
-#define IHaveSubdirs
-#define PassCDebugFlags
-
- SUBDIRS = file
-
-MakeSubdirs($(SUBDIRS))
-NormalLibraryObjectRule()
-
-OBJS= \
- ktadd.o \
- ktbase.o \
- ktdefault.o \
- ktfr_entry.o \
- ktremove.o \
- read_servi.o
-
-SRCS= \
- $(SRCDIR)ktadd.c \
- $(SRCDIR)ktbase.c \
- $(SRCDIR)ktdefault.c \
- $(SRCDIR)ktfr_entry.c \
- $(SRCDIR)ktremove.c \
- $(SRCDIR)read_servi.c
-
-SubdirLibraryRule($(OBJS))
-
-DependTarget()