33140d4ced286bbfc29c9e4ff92cd7998b3d15ce
[openssl.git] / crypto / rsa / Makefile.ssl
1 #
2 # SSLeay/crypto/rsa/Makefile
3 #
4
5 DIR=    rsa
6 TOP=    ../..
7 CC=     cc
8 INCLUDES= -I.. -I../../include
9 CFLAG=-g
10 INSTALLTOP=/usr/local/ssl
11 MAKE=           make -f Makefile.ssl
12 MAKEDEPEND=     $(TOP)/util/domd $(TOP)
13 MAKEFILE=       Makefile.ssl
14 AR=             ar r
15
16 CFLAGS= $(INCLUDES) $(CFLAG)
17
18 ERR=rsa
19 ERRC=rsa_err
20 GENERAL=Makefile
21 TEST=rsa_oaep_test.c
22 APPS=
23
24 LIB=$(TOP)/libcrypto.a
25 LIBSRC= rsa_eay.c rsa_gen.c rsa_lib.c rsa_sign.c rsa_saos.c $(ERRC).c \
26         rsa_pk1.c rsa_ssl.c rsa_none.c rsa_oaep.c
27 LIBOBJ= rsa_eay.o rsa_gen.o rsa_lib.o rsa_sign.o rsa_saos.o $(ERRC).o \
28         rsa_pk1.o rsa_ssl.o rsa_none.o rsa_oaep.o
29
30 SRC= $(LIBSRC)
31
32 EXHEADER= rsa.h
33 HEADER= $(EXHEADER)
34
35 ALL=    $(GENERAL) $(SRC) $(HEADER)
36
37 top:
38         (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
39
40 all:    lib
41
42 lib:    $(LIBOBJ)
43         $(AR) $(LIB) $(LIBOBJ)
44         sh $(TOP)/util/ranlib.sh $(LIB)
45         @touch lib
46
47 files:
48         perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
49
50 links:
51         @$(TOP)/util/point.sh Makefile.ssl Makefile
52         @$(TOP)/util/mklink.sh ../../include $(EXHEADER)
53         @$(TOP)/util/mklink.sh ../../test $(TEST)
54         @$(TOP)/util/mklink.sh ../../apps $(APPS)
55
56 install:
57         @for i in $(EXHEADER) ; \
58         do  \
59         (cp $$i $(INSTALLTOP)/include/$$i; \
60         chmod 644 $(INSTALLTOP)/include/$$i ); \
61         done;
62
63 tags:
64         ctags $(SRC)
65
66 tests:
67
68 lint:
69         lint -DLINT $(INCLUDES) $(SRC)>fluff
70
71 depend:
72         $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC)
73
74 dclean:
75         perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
76         mv -f Makefile.new $(MAKEFILE)
77
78 clean:
79         rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
80
81 errors: $(ERRC).c
82
83 $(ERRC).c: $(ERR).err $(ERR).h
84         perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h
85         perl ../err/err_genc.pl -s $(ERR).h $(ERRC).c
86
87 # DO NOT DELETE THIS LINE -- make depend depends on it.