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
|
|
|
|
MAKE= make -f Makefile.ssl
|
2001-02-19 16:06:34 +00:00
|
|
|
MAKEDEPPROG= makedepend
|
|
|
|
MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
|
1998-12-21 10:52:47 +00:00
|
|
|
MAKEFILE= Makefile.ssl
|
|
|
|
AR= ar r
|
|
|
|
|
1998-12-21 10:56:39 +00:00
|
|
|
RC4_ENC=rc4_enc.o
|
|
|
|
# or use
|
|
|
|
#RC4_ENC=asm/rx86-elf.o
|
|
|
|
#RC4_ENC=asm/rx86-out.o
|
|
|
|
#RC4_ENC=asm/rx86-sol.o
|
|
|
|
#RC4_ENC=asm/rx86bdsi.o
|
|
|
|
|
1998-12-21 10:52:47 +00:00
|
|
|
CFLAGS= $(INCLUDES) $(CFLAG)
|
|
|
|
|
|
|
|
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)
|
2000-09-25 08:53:15 +00:00
|
|
|
@echo You may get an error following this line. Please ignore.
|
|
|
|
- $(RANLIB) $(LIB)
|
1998-12-21 10:52:47 +00:00
|
|
|
@touch lib
|
|
|
|
|
1998-12-21 10:56:39 +00:00
|
|
|
# elf
|
|
|
|
asm/rx86-elf.o: asm/rx86unix.cpp
|
2000-03-12 12:52:36 +00:00
|
|
|
$(CPP) -DELF -x c asm/rx86unix.cpp | as -o asm/rx86-elf.o
|
1998-12-21 10:56:39 +00:00
|
|
|
|
|
|
|
# solaris
|
|
|
|
asm/rx86-sol.o: asm/rx86unix.cpp
|
|
|
|
$(CC) -E -DSOL asm/rx86unix.cpp | sed 's/^#.*//' > asm/rx86-sol.s
|
|
|
|
as -o asm/rx86-sol.o asm/rx86-sol.s
|
|
|
|
rm -f asm/rx86-sol.s
|
|
|
|
|
|
|
|
# a.out
|
|
|
|
asm/rx86-out.o: asm/rx86unix.cpp
|
|
|
|
$(CPP) -DOUT asm/rx86unix.cpp | as -o asm/rx86-out.o
|
|
|
|
|
|
|
|
# bsdi
|
|
|
|
asm/rx86bsdi.o: asm/rx86unix.cpp
|
1998-12-21 11:00:56 +00:00
|
|
|
$(CPP) -DBSDI asm/rx86unix.cpp | sed 's/ :/:/' | as -o asm/rx86bsdi.o
|
1998-12-21 10:56:39 +00:00
|
|
|
|
2000-03-02 19:30:41 +00:00
|
|
|
asm/rx86unix.cpp: asm/rc4-586.pl ../perlasm/x86asm.pl
|
1999-04-01 12:34:33 +00:00
|
|
|
(cd asm; $(PERL) rc4-586.pl cpp >rx86unix.cpp)
|
1998-12-21 10:56:39 +00:00
|
|
|
|
1998-12-21 10:52:47 +00:00
|
|
|
files:
|
1999-04-01 12:34:33 +00:00
|
|
|
$(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
|
1998-12-21 10:52:47 +00:00
|
|
|
|
|
|
|
links:
|
1999-03-06 12:32:06 +00:00
|
|
|
@$(TOP)/util/point.sh Makefile.ssl Makefile
|
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:
|
|
|
|
@for i in $(EXHEADER) ; \
|
|
|
|
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:
|
1999-04-27 01:14:46 +00:00
|
|
|
$(MAKEDEPEND) $(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:
|
1999-05-28 23:18:51 +00:00
|
|
|
rm -f asm/rx86unix.cpp *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff asm/*.o
|
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
|
|
|
|
1999-04-23 22:50:50 +00:00
|
|
|
rc4_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc4.h
|
2001-02-19 16:06:34 +00:00
|
|
|
rc4_enc.o: rc4_enc.c rc4_locl.h
|
1999-04-23 22:50:50 +00:00
|
|
|
rc4_skey.o: ../../include/openssl/opensslconf.h
|
|
|
|
rc4_skey.o: ../../include/openssl/opensslv.h ../../include/openssl/rc4.h
|
2001-02-19 16:06:34 +00:00
|
|
|
rc4_skey.o: rc4_locl.h rc4_skey.c
|