Import of old SSLeay release: SSLeay 0.8.1b
[openssl.git] / crypto / bf / Makefile.ssl
1 #
2 # SSLeay/crypto/blowfish/Makefile
3 #
4
5 DIR=    bf
6 TOP=    ../..
7 CC=     cc
8 CPP=    $(CC) -E
9 INCLUDES=
10 CFLAG=-g
11 INSTALLTOP=/usr/local/ssl
12 MAKE=           make -f Makefile.ssl
13 MAKEDEPEND=     makedepend -f Makefile.ssl
14 MAKEFILE=       Makefile.ssl
15 AR=             ar r
16
17 BF_ENC=         bf_enc.o
18 # or use
19 #DES_ENC=       bx86-elf.o
20
21 CFLAGS= $(INCLUDES) $(CFLAG)
22
23 GENERAL=Makefile
24 TEST=bftest.c
25 APPS=
26
27 LIB=$(TOP)/libcrypto.a
28 LIBSRC=bf_skey.c bf_ecb.c bf_enc.c bf_cbc.c bf_cfb64.c bf_ofb64.c 
29 LIBOBJ=bf_skey.o bf_ecb.o $(BF_ENC) bf_cbc.o bf_cfb64.o bf_ofb64.o
30
31 SRC= $(LIBSRC)
32
33 EXHEADER= blowfish.h
34 HEADER= bf_pi.h bf_locl.h $(EXHEADER)
35
36 ALL=    $(GENERAL) $(SRC) $(HEADER)
37
38 top:
39         (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
40
41 all:    lib
42
43 lib:    $(LIBOBJ)
44         $(AR) $(LIB) $(LIBOBJ)
45         sh $(TOP)/util/ranlib.sh $(LIB)
46         @touch lib
47
48 # elf
49 asm/bx86-elf.o: asm/bx86-cpp.s asm/bx86unix.cpp
50         $(CPP) -DELF asm/bx86unix.cpp | as -o asm/bx86-elf.o
51
52 # solaris
53 asm/bx86-sol.o: asm/bx86-cpp.s asm/bx86unix.cpp
54         $(CC) -E -DSOL asm/bx86unix.cpp | sed 's/^#.*//' > asm/bx86-sol.s
55         as -o asm/bx86-sol.o asm/bx86-sol.s
56         rm -f asm/bx86-sol.s
57
58 # a.out
59 asm/bx86-out.o: asm/bx86-cpp.s asm/bx86unix.cpp
60         $(CPP) -DOUT asm/bx86unix.cpp | as -o asm/bx86-out.o
61
62 # bsdi
63 asm/bx86bsdi.o: asm/bx86-cpp.s asm/bx86unix.cpp
64         $(CPP) -DBSDI asm/bx86unix.cpp | as -o asm/bx86bsdi.o
65
66 files:
67         perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
68
69 links:
70         /bin/rm -f Makefile
71         $(TOP)/util/point.sh Makefile.ssl Makefile ;
72         $(TOP)/util/point.sh ../../doc/blowfish.doc blowfish.doc ;
73         $(TOP)/util/mklink.sh ../../include $(EXHEADER)
74         $(TOP)/util/mklink.sh ../../test $(TEST)
75         $(TOP)/util/mklink.sh ../../apps $(APPS)
76         /bin/rm -f asm/x86ms.pl asm/x86unix.pl
77         $(TOP)/util/point.sh ../../perlasm/x86ms.pl asm/x86ms.pl
78         $(TOP)/util/point.sh ../../perlasm/x86unix.pl asm/x86unix.pl
79
80
81 install:
82         @for i in $(EXHEADER) ; \
83         do  \
84         (cp $$i $(INSTALLTOP)/include/$$i; \
85         chmod 644 $(INSTALLTOP)/include/$$i ); \
86         done;
87
88 tags:
89         ctags $(SRC)
90
91 tests:
92
93 lint:
94         lint -DLINT $(INCLUDES) $(SRC)>fluff
95
96 depend:
97         $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC)
98
99 dclean:
100         perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
101         mv -f Makefile.new $(MAKEFILE)
102
103 clean:
104         /bin/rm -f *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
105
106 errors:
107
108 # DO NOT DELETE THIS LINE -- make depend depends on it.