]> git.ipfire.org Git - thirdparty/openssl.git/blame - rsaref/Makefile.ssl
Complete rewrite of the error code generation script. It now runs as a single
[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 49 @$(TOP)/util/point.sh Makefile.ssl Makefile
ec577822 50 @$(TOP)/util/mklink.sh ../include/openssl $(EXHEADER)
bb8f3c58
RE
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 \
ec577822
BM
58# (cp $$i $(INSTALLTOP)/include/openssl/$$i; \
59# chmod 644 $(INSTALLTOP)/include/openssl/$$i ); \
d02b48c6
RE
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
d02b48c6 80# DO NOT DELETE THIS LINE -- make depend depends on it.
6242bb9c 81
bf57da07
BM
82rsar_err.o: ../include/openssl/bn.h ../include/openssl/crypto.h
83rsar_err.o: ../include/openssl/err.h ../include/openssl/opensslconf.h
84rsar_err.o: ../include/openssl/opensslv.h ../include/openssl/rsa.h
85rsar_err.o: ../include/openssl/rsaref.h ../include/openssl/stack.h
86rsaref.o: ../crypto/cryptlib.h ../include/openssl/bio.h ../include/openssl/bn.h
87rsaref.o: ../include/openssl/buffer.h ../include/openssl/crypto.h
88rsaref.o: ../include/openssl/e_os.h ../include/openssl/err.h
89rsaref.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
90rsaref.o: ../include/openssl/rand.h ../include/openssl/rsa.h
91rsaref.o: ../include/openssl/rsaref.h ../include/openssl/stack.h