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