summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSam Hartman <hartmans@mit.edu>2001-11-09 20:12:37 +0000
committerSam Hartman <hartmans@mit.edu>2001-11-09 20:12:37 +0000
commit6a57be5618bd85948ce23598629ae9fcc0e81380 (patch)
treef0e2d16e3fabec3760cceb0127303ae2d852b61b /src
parentd39e4236a30185ed1a4bb535b7d9d5fda90dbfb0 (diff)
downloadkrb5-6a57be5618bd85948ce23598629ae9fcc0e81380.tar.gz
krb5-6a57be5618bd85948ce23598629ae9fcc0e81380.tar.xz
krb5-6a57be5618bd85948ce23598629ae9fcc0e81380.zip
We don't need this
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@13973 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src')
-rw-r--r--src/lib/crypto/yarrow/Makefile51
1 files changed, 0 insertions, 51 deletions
diff --git a/src/lib/crypto/yarrow/Makefile b/src/lib/crypto/yarrow/Makefile
deleted file mode 100644
index 2dd8647896..0000000000
--- a/src/lib/crypto/yarrow/Makefile
+++ /dev/null
@@ -1,51 +0,0 @@
-CC=cc
-AR=ar r
-RM=rm -f
-
-# path to your OpenSSL installation
-OPENSSL=/usr/local/ssl
-
-INC=-I$(OPENSSL)/include
-LDFLAGS=-L$(OPENSSL) -L./
-LOADLIBES=-lyarrow -lcrypto #-lm
-
-# options you want to use
-DEF1=-DYARROW_SAVE_STATE -DYARROW_TRACE #-DYARROW_DETECT_FORK
-DEF2=-DYARROW_NO_MATHLIB
-DEF=$(DEF1) $(DEF2)
-
-OPT=-g
-#OPT=-O3
-
-CFLAGS=$(OPT) $(DEF) $(INC)
-
-LIB=libyarrow.a
-OBJS=yarrow.o ystate.o yseed.o
-EXES=ytest
-
-ytest: ytest.o $(LIB)
- $(CC) $(LDFLAGS) ytest.o $(LOADLIBES) -o $@
-
-$(LIB): $(OBJS)
- $(AR) $(LIB) $(OBJS)
-
-test: ytest
- ./ytest
-
-clean:
- $(RM) *.a *.o *~ *.bak $(EXES) core
-
-distclean: clean
- $(RM) seed TAGS
-
-tags:
- etags *.c *.h
-
-# DO NOT DELETE
-
-yarrow.o: yarrow.h ytypes.h yhash.h ycipher.h ylock.h ystate.h yexcep.h
-yseed.o: yarrow.h ytypes.h yhash.h ycipher.h yexcep.h
-ystate.o: yarrow.h ytypes.h yhash.h ycipher.h ystate.h yexcep.h
-ytest.o: yarrow.h ytypes.h yhash.h ycipher.h yexcep.h
-yarrow.o: ytypes.h yhash.h ycipher.h
-ylock.o: yarrow.h ytypes.h yhash.h ycipher.h