Import of old SSLeay release: SSLeay 0.9.0b
[openssl.git] / rsaref / Makefile.ssl
1 #
2 # SSLeay/rsaref/Makefile
3 #
4
5 DIR=    rsaref
6 TOP=    ..
7 CC=     cc
8 INCLUDES= -I../crypto -I../include
9 CFLAG=-g
10 INSTALLTOP=/usr/local/ssl
11 MAKE=           make -f Makefile.ssl
12 MAKEDEPEND=     makedepend -f Makefile.ssl
13 MAKEFILE=       Makefile.ssl
14 AR=             ar r
15
16 CFLAGS= $(INCLUDES) $(CFLAG)
17
18 ERR=rsaref
19 ERRC=rsar_err
20 GENERAL=Makefile
21 TEST=
22 APPS=
23
24 LIB=$(TOP)/libRSAglue.a
25 LIBSRC= rsaref.c $(ERRC).c
26 LIBOBJ= rsaref.o $(ERRC).o
27
28 SRC= $(LIBSRC)
29
30 EXHEADER=
31 HEADER= $(EXHEADER) rsaref.h
32
33 ALL=    $(GENERAL) $(SRC) $(HEADER)
34
35 top:
36         (cd ..; $(MAKE) DIRS=rsaref all)
37
38 all:    lib
39
40 lib:    $(LIBOBJ)
41         $(AR) $(LIB) $(LIBOBJ)
42         sh $(TOP)/util/ranlib.sh $(LIB)
43         @touch lib
44
45 files:
46         perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
47
48 links:
49         /bin/rm -f Makefile
50         $(TOP)/util/point.sh Makefile.ssl Makefile ;
51         $(TOP)/util/mklink.sh ../include $(EXHEADER)
52         $(TOP)/util/mklink.sh ../test $(TEST)
53         $(TOP)/util/mklink.sh ../apps $(APPS)
54
55 install:
56
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         /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
80
81 errors:
82         perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h
83         perl ../crypto/err/err_genc.pl -s $(ERR).h $(ERRC).c
84
85 # DO NOT DELETE THIS LINE -- make depend depends on it.