VMS doesn't have directory separators in the same sense as Unix
[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) $(SHARED_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
20 LIBOBJ=md_rand.o randfile.o rand_lib.o rand_err.o rand_egd.o \
21         rand_win.o rand_unix.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 depend:
40         $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(LIBSRC)
41
42 clean:
43         rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
44
45 # DO NOT DELETE THIS LINE -- make depend depends on it.