BIO_PAIR_DEBUG did nothing; remove it.
[openssl.git] / crypto / rand / Makefile.in
1 #
2 # OpenSSL/crypto/rand/Makefile
3 #
4
5 DIR=    rand
6 TOP=    ../..
7 CC=     cc
8 INCLUDES=
9 CFLAG=-g
10 MAKEFILE=       Makefile
11 AR=             ar r
12
13 CFLAGS= $(INCLUDES) $(CFLAG)
14
15 GENERAL=Makefile
16
17 LIB=$(TOP)/libcrypto.a
18 LIBSRC=md_rand.c randfile.c rand_lib.c rand_err.c rand_egd.c \
19         rand_win.c rand_unix.c rand_os2.c rand_nw.c
20 LIBOBJ=md_rand.o randfile.o rand_lib.o rand_err.o rand_egd.o \
21         rand_win.o rand_unix.o rand_os2.o rand_nw.o
22
23 SRC= $(LIBSRC)
24
25 HEADER= 
26
27 ALL=    $(GENERAL) $(SRC) $(HEADER)
28
29 top:
30         (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
31
32 all:    lib
33
34 lib:    $(LIBOBJ)
35         $(AR) $(LIB) $(LIBOBJ)
36         $(RANLIB) $(LIB) || echo Never mind.
37         @touch lib
38
39 files:
40         $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
41
42 depend:
43         $(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
44
45 clean:
46         rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
47
48 # DO NOT DELETE THIS LINE -- make depend depends on it.