Makefile.ssl 2.5 KB
Newer Older
1 2 3 4 5 6 7
#
# SSLeay/crypto/rc4/Makefile
#

DIR=	rc4
TOP=	../..
CC=	cc
8
CPP=    $(CC) -E
9 10
INCLUDES=
CFLAG=-g
11 12
INSTALL_PREFIX=
OPENSSLDIR=     /usr/local/ssl
13 14
INSTALLTOP=/usr/local/ssl
MAKE=		make -f Makefile.ssl
15
MAKEDEPEND=	$(TOP)/util/domd $(TOP)
16 17 18
MAKEFILE=	Makefile.ssl
AR=		ar r

19 20 21 22 23 24 25
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

26 27 28 29 30 31 32
CFLAGS= $(INCLUDES) $(CFLAG)

GENERAL=Makefile
TEST=rc4test.c
APPS=

LIB=$(TOP)/libcrypto.a
33 34
LIBSRC=rc4_skey.c rc4_enc.c
LIBOBJ=rc4_skey.o $(RC4_ENC)
35 36 37 38

SRC= $(LIBSRC)

EXHEADER= rc4.h
39
HEADER=	$(EXHEADER) rc4_locl.h
40 41 42 43 44 45 46 47 48 49

ALL=    $(GENERAL) $(SRC) $(HEADER)

top:
	(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)

all:	lib

lib:	$(LIBOBJ)
	$(AR) $(LIB) $(LIBOBJ)
50 51
	@echo You may get an error following this line.  Please ignore.
	- $(RANLIB) $(LIB)
52 53
	@touch lib

54 55
# elf
asm/rx86-elf.o: asm/rx86unix.cpp
U
Ulf Möller 已提交
56
	$(CPP) -DELF -x c asm/rx86unix.cpp | as -o asm/rx86-elf.o
57 58 59 60 61 62 63 64 65 66 67 68 69

# 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
70
	$(CPP) -DBSDI asm/rx86unix.cpp | sed 's/ :/:/' | as -o asm/rx86bsdi.o
71

B
Bodo Möller 已提交
72
asm/rx86unix.cpp: asm/rc4-586.pl ../perlasm/x86asm.pl
73
	(cd asm; $(PERL) rc4-586.pl cpp >rx86unix.cpp)
74

75
files:
76
	$(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
77 78

links:
79
	@$(TOP)/util/point.sh Makefile.ssl Makefile
80 81 82
	@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
	@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
	@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
83 84 85 86

install:
	@for i in $(EXHEADER) ; \
	do  \
87 88
	(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
	chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
89 90 91 92 93 94 95 96 97 98 99
	done;

tags:
	ctags $(SRC)

tests:

lint:
	lint -DLINT $(INCLUDES) $(SRC)>fluff

depend:
100
	$(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC)
101 102

dclean:
103
	$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
104 105 106
	mv -f Makefile.new $(MAKEFILE)

clean:
B
Bodo Möller 已提交
107
	rm -f asm/rx86unix.cpp *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff asm/*.o
108 109

# DO NOT DELETE THIS LINE -- make depend depends on it.
B
Ben Laurie 已提交
110

B
Bodo Möller 已提交
111 112 113 114 115
rc4_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc4.h
rc4_enc.o: rc4_locl.h
rc4_skey.o: ../../include/openssl/opensslconf.h
rc4_skey.o: ../../include/openssl/opensslv.h ../../include/openssl/rc4.h
rc4_skey.o: rc4_locl.h