e42abc327513256a19735f977bcb96a0035fdf77
[openssl.git] / crypto / rc5 / Makefile.ssl
1 #
2 # SSLeay/crypto/rc5/Makefile
3 #
4
5 DIR=    rc5
6 TOP=    ../..
7 CC=     cc
8 CPP=    $(CC) -E
9 INCLUDES=
10 CFLAG=-g
11 INSTALL_PREFIX=
12 OPENSSLDIR=     /usr/local/ssl
13 INSTALLTOP=/usr/local/ssl
14 MAKE=           make -f Makefile.ssl
15 MAKEDEPPROG=    makedepend
16 MAKEDEPEND=     $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
17 MAKEFILE=       Makefile.ssl
18 AR=             ar r
19
20 RC5_ENC=                rc5_enc.o
21 # or use
22 #DES_ENC=       r586-elf.o
23
24 CFLAGS= $(INCLUDES) $(CFLAG)
25 ASFLAGS= $(INCLUDES) $(ASFLAG)
26
27 GENERAL=Makefile
28 TEST=rc5test.c
29 APPS=
30
31 LIB=$(TOP)/libcrypto.a
32 LIBSRC=rc5_skey.c rc5_ecb.c rc5_enc.c rc5cfb64.c rc5ofb64.c 
33 LIBOBJ=rc5_skey.o rc5_ecb.o $(RC5_ENC) rc5cfb64.o rc5ofb64.o
34
35 SRC= $(LIBSRC)
36
37 EXHEADER= rc5.h
38 HEADER= rc5_locl.h $(EXHEADER)
39
40 ALL=    $(GENERAL) $(SRC) $(HEADER)
41
42 top:
43         (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
44
45 all:    lib
46
47 lib:    $(LIBOBJ)
48         $(AR) $(LIB) $(LIBOBJ)
49         $(RANLIB) $(LIB) || echo Never mind.
50         @touch lib
51
52 # ELF
53 asm/r586-elf.s: asm/rc5-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl
54         (cd asm; $(PERL) rc5-586.pl elf $(CFLAGS) > ../$@)
55 # COFF
56 asm/r586-cof.s: asm/rc5-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl
57         (cd asm; $(PERL) rc5-586.pl coff $(CFLAGS) > ../$@)
58 # a.out
59 asm/r586-out.s: asm/rc5-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl
60         (cd asm; $(PERL) rc5-586.pl a.out $(CFLAGS) > ../$@)
61
62 files:
63         $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
64
65 links:
66         @sh $(TOP)/util/point.sh Makefile.ssl Makefile
67         @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
68         @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
69         @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
70
71 install:
72         @for i in $(EXHEADER) ; \
73         do  \
74         (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
75         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
76         done;
77
78 tags:
79         ctags $(SRC)
80
81 tests:
82
83 lint:
84         lint -DLINT $(INCLUDES) $(SRC)>fluff
85
86 depend:
87         $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
88
89 dclean:
90         $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
91         mv -f Makefile.new $(MAKEFILE)
92
93 clean:
94         rm -f asm/r586unix.cpp asm/*-[elf|cof|out].* *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
95
96 # DO NOT DELETE THIS LINE -- make depend depends on it.
97
98 rc5_ecb.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
99 rc5_ecb.o: ../../include/openssl/rc5.h rc5_ecb.c rc5_locl.h
100 rc5_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc5.h
101 rc5_enc.o: rc5_enc.c rc5_locl.h
102 rc5_skey.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc5.h
103 rc5_skey.o: rc5_locl.h rc5_skey.c
104 rc5cfb64.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc5.h
105 rc5cfb64.o: rc5_locl.h rc5cfb64.c
106 rc5ofb64.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc5.h
107 rc5ofb64.o: rc5_locl.h rc5ofb64.c