ea03dabb2255ebcb66c64b63eb288fcc003bccd5
[openssl.git] / crypto / md5 / Makefile.ssl
1 #
2 # SSLeay/crypto/md5/Makefile
3 #
4
5 DIR=    md5
6 TOP=    ../..
7 CC=     cc
8 CPP=    $(CC) -E
9 INCLUDES=
10 CFLAG=-g
11 INSTALLTOP=/usr/local/ssl
12 MAKE=           make -f Makefile.ssl
13 MAKEDEPEND=     $(TOP)/util/domd $(TOP)
14 MAKEFILE=       Makefile.ssl
15 AR=             ar r
16
17 MD5_ASM_OBJ=
18
19 CFLAGS= $(INCLUDES) $(CFLAG)
20
21 GENERAL=Makefile
22 TEST=md5test.c
23 APPS=md5.c
24
25 LIB=$(TOP)/libcrypto.a
26 LIBSRC=md5_dgst.c md5_one.c
27 LIBOBJ=md5_dgst.o md5_one.o $(MD5_ASM_OBJ)
28
29 SRC= $(LIBSRC)
30
31 EXHEADER= md5.h
32 HEADER= md5_locl.h $(EXHEADER)
33
34 ALL=    $(GENERAL) $(SRC) $(HEADER)
35
36 top:
37         (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
38
39 all:    lib
40
41 lib:    $(LIBOBJ)
42         $(AR) $(LIB) $(LIBOBJ)
43         $(RANLIB) $(LIB)
44         @touch lib
45
46 # elf
47 asm/mx86-elf.o: asm/mx86unix.cpp
48         $(CPP) -DELF asm/mx86unix.cpp | as -o asm/mx86-elf.o
49
50 # solaris
51 asm/mx86-sol.o: asm/mx86unix.cpp
52         $(CC) -E -DSOL asm/mx86unix.cpp | sed 's/^#.*//' > asm/mx86-sol.s
53         as -o asm/mx86-sol.o asm/mx86-sol.s
54         rm -f asm/mx86-sol.s
55
56 # a.out
57 asm/mx86-out.o: asm/mx86unix.cpp
58         $(CPP) -DOUT asm/mx86unix.cpp | as -o asm/mx86-out.o
59
60 # bsdi
61 asm/mx86bsdi.o: asm/mx86unix.cpp
62         $(CPP) -DBSDI asm/mx86unix.cpp | sed 's/ :/:/' | as -o asm/mx86bsdi.o
63
64 asm/mx86unix.cpp: asm/md5-586.pl
65         (cd asm; $(PERL) md5-586.pl cpp >mx86unix.cpp)
66
67 files:
68         $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
69
70 links:
71         @$(TOP)/util/point.sh Makefile.ssl Makefile
72         @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
73         @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
74         @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
75
76 install:
77         @for i in $(EXHEADER) ; \
78         do  \
79         (cp $$i $(INSTALLTOP)/include/openssl/$$i; \
80         chmod 644 $(INSTALLTOP)/include/openssl/$$i ); \
81         done;
82
83 tags:
84         ctags $(SRC)
85
86 tests:
87
88 lint:
89         lint -DLINT $(INCLUDES) $(SRC)>fluff
90
91 depend:
92         $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC)
93
94 dclean:
95         $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
96         mv -f Makefile.new $(MAKEFILE)
97
98 clean:
99         rm -f *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
100
101 # DO NOT DELETE THIS LINE -- make depend depends on it.
102
103 md5_dgst.o: ../../include/openssl/md5.h ../../include/openssl/opensslv.h
104 md5_dgst.o: md5_locl.h
105 md5_one.o: ../../include/openssl/md5.h md5_locl.h