1998-12-21 10:52:47 +00:00
|
|
|
#
|
|
|
|
# SSLeay/crypto/rc4/Makefile
|
|
|
|
#
|
|
|
|
|
|
|
|
DIR= rc4
|
|
|
|
TOP= ../..
|
|
|
|
CC= cc
|
2000-03-20 18:16:52 +00:00
|
|
|
CPP= $(CC) -E
|
1998-12-21 10:52:47 +00:00
|
|
|
INCLUDES=
|
|
|
|
CFLAG=-g
|
1999-04-29 21:52:08 +00:00
|
|
|
INSTALL_PREFIX=
|
|
|
|
OPENSSLDIR= /usr/local/ssl
|
1998-12-21 10:52:47 +00:00
|
|
|
INSTALLTOP=/usr/local/ssl
|
2005-03-30 13:05:57 +00:00
|
|
|
MAKE= make
|
2001-02-19 16:06:34 +00:00
|
|
|
MAKEDEPPROG= makedepend
|
|
|
|
MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
|
2005-03-30 13:05:57 +00:00
|
|
|
MAKEFILE= Makefile
|
1998-12-21 10:52:47 +00:00
|
|
|
AR= ar r
|
|
|
|
|
1998-12-21 10:56:39 +00:00
|
|
|
RC4_ENC=rc4_enc.o
|
|
|
|
|
1998-12-21 10:52:47 +00:00
|
|
|
CFLAGS= $(INCLUDES) $(CFLAG)
|
2003-11-16 14:38:34 +00:00
|
|
|
ASFLAGS= $(INCLUDES) $(ASFLAG)
|
2004-08-29 21:36:37 +00:00
|
|
|
AFLAGS= $(ASFLAGS)
|
1998-12-21 10:52:47 +00:00
|
|
|
|
|
|
|
GENERAL=Makefile
|
|
|
|
TEST=rc4test.c
|
|
|
|
APPS=
|
|
|
|
|
|
|
|
LIB=$(TOP)/libcrypto.a
|
1998-12-21 10:56:39 +00:00
|
|
|
LIBSRC=rc4_skey.c rc4_enc.c
|
|
|
|
LIBOBJ=rc4_skey.o $(RC4_ENC)
|
1998-12-21 10:52:47 +00:00
|
|
|
|
|
|
|
SRC= $(LIBSRC)
|
|
|
|
|
|
|
|
EXHEADER= rc4.h
|
1998-12-21 10:56:39 +00:00
|
|
|
HEADER= $(EXHEADER) rc4_locl.h
|
1998-12-21 10:52:47 +00:00
|
|
|
|
|
|
|
ALL= $(GENERAL) $(SRC) $(HEADER)
|
|
|
|
|
|
|
|
top:
|
|
|
|
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
|
|
|
|
|
|
|
all: lib
|
|
|
|
|
|
|
|
lib: $(LIBOBJ)
|
|
|
|
$(AR) $(LIB) $(LIBOBJ)
|
2001-03-09 14:01:42 +00:00
|
|
|
$(RANLIB) $(LIB) || echo Never mind.
|
1998-12-21 10:52:47 +00:00
|
|
|
@touch lib
|
|
|
|
|
2004-08-01 17:33:58 +00:00
|
|
|
# ELF
|
2005-02-06 13:23:34 +00:00
|
|
|
rx86-elf.s: asm/rc4-586.pl ../perlasm/x86asm.pl
|
2004-08-01 17:33:58 +00:00
|
|
|
(cd asm; $(PERL) rc4-586.pl elf $(CFLAGS) > ../$@)
|
|
|
|
# COFF
|
2005-02-06 13:23:34 +00:00
|
|
|
rx86-cof.s: asm/rc4-586.pl ../perlasm/x86asm.pl
|
2004-08-01 17:33:58 +00:00
|
|
|
(cd asm; $(PERL) rc4-586.pl coff $(CFLAGS) > ../$@)
|
1998-12-21 10:56:39 +00:00
|
|
|
# a.out
|
2004-08-29 21:36:37 +00:00
|
|
|
rx86-out.s: asm/rc4-586.pl ../perlasm/x86asm.pl
|
|
|
|
(cd asm; $(PERL) rc4-586.pl a.out $(CFLAGS) > ../$@)
|
1998-12-21 10:56:39 +00:00
|
|
|
|
2005-04-04 17:10:53 +00:00
|
|
|
rc4-amd64.s: asm/rc4-amd64.pl; $(PERL) asm/rc4-amd64.pl $@
|
2004-07-11 16:49:09 +00:00
|
|
|
|
2005-02-06 13:23:34 +00:00
|
|
|
rc4-ia64.s: asm/rc4-ia64.S
|
2004-11-26 15:12:17 +00:00
|
|
|
$(CC) $(CFLAGS) -E asm/rc4-ia64.S > $@
|
|
|
|
|
1998-12-21 10:52:47 +00:00
|
|
|
files:
|
2005-03-30 13:05:57 +00:00
|
|
|
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
1998-12-21 10:52:47 +00:00
|
|
|
|
|
|
|
links:
|
1999-04-29 12:46:59 +00:00
|
|
|
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
|
|
|
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
|
|
|
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
1998-12-21 10:52:47 +00:00
|
|
|
|
|
|
|
install:
|
2004-11-02 23:55:01 +00:00
|
|
|
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
1998-12-21 10:52:47 +00:00
|
|
|
do \
|
1999-04-29 21:52:08 +00:00
|
|
|
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
|
|
|
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
1998-12-21 10:52:47 +00:00
|
|
|
done;
|
|
|
|
|
|
|
|
tags:
|
|
|
|
ctags $(SRC)
|
|
|
|
|
|
|
|
tests:
|
|
|
|
|
|
|
|
lint:
|
|
|
|
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
|
|
|
|
|
|
|
depend:
|
2002-10-09 13:25:12 +00:00
|
|
|
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
1998-12-21 10:52:47 +00:00
|
|
|
|
|
|
|
dclean:
|
1999-04-01 12:34:33 +00:00
|
|
|
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
1998-12-21 10:52:47 +00:00
|
|
|
mv -f Makefile.new $(MAKEFILE)
|
|
|
|
|
|
|
|
clean:
|
2005-02-06 13:23:34 +00:00
|
|
|
rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
1998-12-21 10:52:47 +00:00
|
|
|
|
|
|
|
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
1999-03-06 14:32:48 +00:00
|
|
|
|
2004-12-13 22:57:08 +00:00
|
|
|
rc4_enc.o: ../../e_os.h ../../include/openssl/bio.h
|
|
|
|
rc4_enc.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
|
|
|
rc4_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
|
|
|
rc4_enc.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
|
|
|
rc4_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
|
|
|
rc4_enc.o: ../../include/openssl/rc4.h ../../include/openssl/safestack.h
|
|
|
|
rc4_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
|
|
|
rc4_enc.o: ../cryptlib.h rc4_enc.c rc4_locl.h
|
|
|
|
rc4_skey.o: ../../e_os.h ../../include/openssl/bio.h
|
|
|
|
rc4_skey.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
|
|
|
rc4_skey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
|
|
|
rc4_skey.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
|
|
|
rc4_skey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
|
|
|
rc4_skey.o: ../../include/openssl/rc4.h ../../include/openssl/safestack.h
|
|
|
|
rc4_skey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
|
|
|
rc4_skey.o: ../cryptlib.h rc4_locl.h rc4_skey.c
|