]> git.ipfire.org Git - thirdparty/openssl.git/blame - rsaref/Makefile.ssl
New Makefile variables $(RANLIB) and $(PERL).
[thirdparty/openssl.git] / rsaref / Makefile.ssl
CommitLineData
d02b48c6
RE
1#
2# SSLeay/rsaref/Makefile
3#
4
5DIR= rsaref
6TOP= ..
7CC= cc
8INCLUDES= -I../crypto -I../include
9CFLAG=-g
10INSTALLTOP=/usr/local/ssl
11MAKE= make -f Makefile.ssl
8039257d 12MAKEDEPEND= $(TOP)/util/domd $(TOP)
d02b48c6
RE
13MAKEFILE= Makefile.ssl
14AR= ar r
15
16CFLAGS= $(INCLUDES) $(CFLAG)
17
18ERR=rsaref
19ERRC=rsar_err
20GENERAL=Makefile
21TEST=
22APPS=
23
24LIB=$(TOP)/libRSAglue.a
25LIBSRC= rsaref.c $(ERRC).c
26LIBOBJ= rsaref.o $(ERRC).o
27
28SRC= $(LIBSRC)
29
13e91dd3
RE
30EXHEADER= rsaref.h
31HEADER= $(EXHEADER)
d02b48c6
RE
32
33ALL= $(GENERAL) $(SRC) $(HEADER)
34
35top:
36 (cd ..; $(MAKE) DIRS=rsaref all)
37
38all: lib
39
40lib: $(LIBOBJ)
41 $(AR) $(LIB) $(LIBOBJ)
99aab161 42 $(RANLIB) $(LIB)
d02b48c6
RE
43 @touch lib
44
45files:
99aab161 46 $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
d02b48c6
RE
47
48links:
bb8f3c58
RE
49 @$(TOP)/util/point.sh Makefile.ssl Makefile
50 @$(TOP)/util/mklink.sh ../include $(EXHEADER)
51 @$(TOP)/util/mklink.sh ../test $(TEST)
52 @$(TOP)/util/mklink.sh ../apps $(APPS)
d02b48c6
RE
53
54install:
55
56# @for i in $(EXHEADER) ; \
57# do \
58# (cp $$i $(INSTALLTOP)/include/$$i; \
59# chmod 644 $(INSTALLTOP)/include/$$i ); \
60# done;
61
62tags:
63 ctags $(SRC)
64
65tests:
66
67lint:
68 lint -DLINT $(INCLUDES) $(SRC)>fluff
69
70depend:
71 $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC)
72
73dclean:
99aab161 74 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
d02b48c6
RE
75 mv -f Makefile.new $(MAKEFILE)
76
77clean:
bb8f3c58 78 rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
d02b48c6 79
6c8abdd7
DSH
80errors: $(ERRC).c
81
82$(ERRC).c: $(ERR).err
99aab161
UM
83 $(PERL) $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h
84 $(PERL) ../crypto/err/err_genc.pl -s $(ERR).h $(ERRC).c
d02b48c6
RE
85
86# DO NOT DELETE THIS LINE -- make depend depends on it.
6242bb9c 87
b4cadc6e
BL
88rsar_err.o: ../crypto/crypto.h ../crypto/opensslv.h ../include/bn.h
89rsar_err.o: ../include/err.h ../include/rsa.h ../include/stack.h rsaref.h
90rsaref.o: ../crypto/cryptlib.h ../crypto/crypto.h ../crypto/opensslv.h
91rsaref.o: ../include/bio.h ../include/bn.h ../include/buffer.h
92rsaref.o: ../include/e_os.h ../include/err.h ../include/rand.h ../include/rsa.h
6242bb9c 93rsaref.o: ../include/stack.h rsaref.h