]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/des/Makefile.ssl
pre-0.9.3 development version.
[thirdparty/openssl.git] / crypto / des / Makefile.ssl
CommitLineData
d02b48c6
RE
1#
2# SSLeay/crypto/des/Makefile
3#
4
5DIR= des
6TOP= ../..
7CC= cc
8CPP= $(CC) -E
9INCLUDES=
10CFLAG=-g
11INSTALLTOP=/usr/local/ssl
12MAKE= make -f Makefile.ssl
8039257d 13MAKEDEPEND= $(TOP)/util/domd $(TOP)
d02b48c6
RE
14MAKEFILE= Makefile.ssl
15AR= ar r
16DES_ENC= des_enc.o fcrypt_b.o
17# or use
58964a49 18#DES_ENC= dx86-elf.o yx86-elf.o
d02b48c6
RE
19
20CFLAGS= $(INCLUDES) $(CFLAG)
21
22GENERAL=Makefile des.org des_locl.org
23TEST=destest.c
24APPS=
25
26LIB=$(TOP)/libcrypto.a
58964a49
RE
27LIBSRC= cbc_cksm.c cbc_enc.c cfb64enc.c cfb_enc.c \
28 ecb3_enc.c ecb_enc.c enc_read.c enc_writ.c \
29 fcrypt.c ofb64enc.c ofb_enc.c pcbc_enc.c \
d02b48c6
RE
30 qud_cksm.c rand_key.c read_pwd.c rpc_enc.c set_key.c \
31 des_enc.c fcrypt_b.c read2pwd.c \
32 fcrypt.c xcbc_enc.c \
4a71b90d 33 str2key.c cfb64ede.c ofb64ede.c supp.c ede_cbcm_enc.c
d02b48c6 34
58964a49 35LIBOBJ= set_key.o ecb_enc.o cbc_enc.o \
d02b48c6 36 ecb3_enc.o cfb64enc.o cfb64ede.o cfb_enc.o ofb64ede.o \
58964a49 37 enc_read.o enc_writ.o ofb64enc.o \
d02b48c6
RE
38 ofb_enc.o str2key.o pcbc_enc.o qud_cksm.o rand_key.o \
39 ${DES_ENC} read2pwd.o \
4a71b90d
BL
40 fcrypt.o xcbc_enc.o read_pwd.o rpc_enc.o cbc_cksm.o supp.o \
41 ede_cbcm_enc.o
d02b48c6
RE
42
43SRC= $(LIBSRC)
44
45EXHEADER= des.h
46HEADER= des_locl.h rpc_des.h podd.h sk.h spr.h des_ver.h $(EXHEADER)
47
48ALL= $(GENERAL) $(SRC) $(HEADER)
49
50top:
51 (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
52
53all: lib
54
55lib: $(LIBOBJ)
56 $(AR) $(LIB) $(LIBOBJ)
57 sh $(TOP)/util/ranlib.sh $(LIB)
58 @touch lib
59
60# elf
58964a49 61asm/dx86-elf.o: asm/dx86unix.cpp
d02b48c6
RE
62 $(CPP) -DELF asm/dx86unix.cpp | as -o asm/dx86-elf.o
63
58964a49
RE
64asm/yx86-elf.o: asm/yx86unix.cpp
65 $(CPP) -DELF asm/yx86unix.cpp | as -o asm/yx86-elf.o
d02b48c6
RE
66
67# solaris
58964a49 68asm/dx86-sol.o: asm/dx86unix.cpp
d02b48c6
RE
69 $(CC) -E -DSOL asm/dx86unix.cpp | sed 's/^#.*//' > asm/dx86-sol.s
70 as -o asm/dx86-sol.o asm/dx86-sol.s
71 rm -f asm/dx86-sol.s
72
58964a49
RE
73asm/yx86-sol.o: asm/yx86unix.cpp
74 $(CC) -E -DSOL asm/yx86unix.cpp | sed 's/^#.*//' > asm/yx86-sol.s
75 as -o asm/yx86-sol.o asm/yx86-sol.s
76 rm -f asm/yx86-sol.s
d02b48c6
RE
77
78# a.out
58964a49 79asm/dx86-out.o: asm/dx86unix.cpp
d02b48c6
RE
80 $(CPP) -DOUT asm/dx86unix.cpp | as -o asm/dx86-out.o
81
58964a49
RE
82asm/yx86-out.o: asm/yx86unix.cpp
83 $(CPP) -DOUT asm/yx86unix.cpp | as -o asm/yx86-out.o
d02b48c6
RE
84
85# bsdi
58964a49 86asm/dx86bsdi.o: asm/dx86unix.cpp
dfeab068 87 $(CPP) -DBSDI asm/dx86unix.cpp | sed 's/ :/:/' | as -o asm/dx86bsdi.o
d02b48c6 88
58964a49 89asm/yx86bsdi.o: asm/yx86unix.cpp
dfeab068 90 $(CPP) -DBSDI asm/yx86unix.cpp | sed 's/ :/:/' | as -o asm/yx86bsdi.o
58964a49 91
9151d396 92asm/dx86unix.cpp: asm/des-586.pl
58964a49
RE
93 (cd asm; perl des-586.pl cpp >dx86unix.cpp)
94
9151d396 95asm/yx86unix.cpp: asm/crypt586.pl
58964a49 96 (cd asm; perl crypt586.pl cpp >yx86unix.cpp)
d02b48c6
RE
97
98files:
99 perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
100
101links:
bb8f3c58
RE
102 @$(TOP)/util/point.sh Makefile.ssl Makefile
103 @$(TOP)/util/point.sh ../../perlasm asm/perlasm
104 @$(TOP)/util/mklink.sh ../../include $(EXHEADER)
105 @$(TOP)/util/mklink.sh ../../test $(TEST)
106 @$(TOP)/util/mklink.sh ../../apps $(APPS)
d02b48c6
RE
107
108install: installs
109
110installs:
111 @for i in $(EXHEADER) ; \
112 do \
113 (cp $$i $(INSTALLTOP)/include/$$i; \
114 chmod 644 $(INSTALLTOP)/include/$$i ); \
115 done;
116
117tags:
118 ctags $(SRC)
119
120tests:
121
122lint:
123 lint -DLINT $(INCLUDES) $(SRC)>fluff
124
125depend:
126 $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC)
127
128dclean:
129 perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
130 mv -f Makefile.new $(MAKEFILE)
131
132clean:
bb8f3c58 133 rm -f *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
d02b48c6
RE
134
135errors:
136
137# DO NOT DELETE THIS LINE -- make depend depends on it.
6242bb9c
BL
138
139cbc_cksm.o: des.h des_locl.h
140cbc_enc.o: des.h des_locl.h
141cfb64ede.o: des.h des_locl.h
142cfb64enc.o: des.h des_locl.h
143cfb_enc.o: des.h des_locl.h
144des_enc.o: des.h des_locl.h
145ecb3_enc.o: des.h des_locl.h
b4cadc6e 146ecb_enc.o: ../opensslv.h des.h des_locl.h spr.h
6242bb9c 147ede_cbcm_enc.o: des.h des_locl.h
b4cadc6e
BL
148enc_read.o: ../../include/bio.h ../../include/buffer.h ../../include/e_os.h
149enc_read.o: ../../include/err.h ../../include/stack.h ../cryptlib.h ../crypto.h
150enc_read.o: ../opensslv.h des.h des_locl.h
151enc_writ.o: ../../include/bio.h ../../include/buffer.h ../../include/e_os.h
152enc_writ.o: ../../include/err.h ../../include/stack.h ../cryptlib.h ../crypto.h
153enc_writ.o: ../opensslv.h des.h des_locl.h
6242bb9c
BL
154fcrypt.o: des.h des.h des_locl.h des_locl.h
155fcrypt_b.o: des.h des_locl.h
156ofb64ede.o: des.h des_locl.h
157ofb64enc.o: des.h des_locl.h
158ofb_enc.o: des.h des_locl.h
159pcbc_enc.o: des.h des_locl.h
160qud_cksm.o: des.h des_locl.h
161rand_key.o: des.h des_locl.h
162read2pwd.o: des.h des_locl.h
2a04d1e4
BL
163read_pwd.o: ../../include/bio.h ../../include/buffer.h ../../include/e_os.h
164read_pwd.o: ../../include/err.h ../../include/stack.h ../cryptlib.h ../crypto.h
b4cadc6e 165read_pwd.o: ../opensslv.h des.h des_locl.h
6242bb9c
BL
166rpc_enc.o: des.h des_locl.h des_ver.h rpc_des.h
167set_key.o: des.h des_locl.h podd.h sk.h
168str2key.o: des.h des_locl.h
169supp.o: des.h des_locl.h
170xcbc_enc.o: des.h des_locl.h