update docs (recent constification)
[openssl.git] / crypto / rc5 / Makefile
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
15 MAKEDEPPROG=    makedepend
16 MAKEDEPEND=     $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
17 MAKEFILE=       Makefile
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 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 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 >> $(TOP)/MINFO
65
66 links:
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         @headerlist="$(EXHEADER)"; for i in $$headerlist ; \
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 *.s *.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