]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/rand/Makefile.ssl
Support INSTALL_PREFIX for packagers.
[thirdparty/openssl.git] / crypto / rand / Makefile.ssl
CommitLineData
d02b48c6
RE
1#
2# SSLeay/crypto/rand/Makefile
3#
4
5DIR= rand
6TOP= ../..
7CC= cc
8INCLUDES=
9CFLAG=-g
e5f3045f
BM
10INSTALL_PREFIX=
11OPENSSLDIR= /usr/local/ssl
d02b48c6
RE
12INSTALLTOP=/usr/local/ssl
13MAKE= make -f Makefile.ssl
8039257d 14MAKEDEPEND= $(TOP)/util/domd $(TOP)
d02b48c6
RE
15MAKEFILE= Makefile.ssl
16AR= ar r
17
18CFLAGS= $(INCLUDES) $(CFLAG)
19
20GENERAL=Makefile
21TEST= randtest.c
22APPS=
23
24LIB=$(TOP)/libcrypto.a
dfeab068
RE
25LIBSRC=md_rand.c randfile.c rand_lib.c
26LIBOBJ=md_rand.o randfile.o rand_lib.o
d02b48c6
RE
27
28SRC= $(LIBSRC)
29
30EXHEADER= rand.h
31HEADER= $(EXHEADER)
32
33ALL= $(GENERAL) $(SRC) $(HEADER)
34
35top:
36 (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_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
1314c344
BM
50 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
51 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
52 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
d02b48c6
RE
53
54install:
55 @for i in $(EXHEADER) ; \
56 do \
e5f3045f
BM
57 (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
58 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
d02b48c6
RE
59 done;
60
61tags:
62 ctags $(SRC)
63
64tests:
65
66lint:
67 lint -DLINT $(INCLUDES) $(SRC)>fluff
68
69depend:
f5d7a031 70 $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC)
d02b48c6
RE
71
72dclean:
99aab161 73 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
d02b48c6
RE
74 mv -f Makefile.new $(MAKEFILE)
75
76clean:
bb8f3c58 77 rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
d02b48c6 78
d02b48c6 79# DO NOT DELETE THIS LINE -- make depend depends on it.
6242bb9c 80
bf57da07 81md_rand.o: ../../include/openssl/crypto.h ../../include/openssl/e_os.h
d02f751c
UM
82md_rand.o: ../../include/openssl/opensslv.h ../../include/openssl/rand.h
83md_rand.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
bf57da07
BM
84rand_lib.o: ../../include/openssl/rand.h
85randfile.o: ../../include/openssl/e_os.h ../../include/openssl/rand.h