and added files
[bcm963xx.git] / userapps / opensource / openssl / crypto / md4 / Makefile
1 #
2 # SSLeay/crypto/md4/Makefile
3 #
4
5 DIR=    md4
6 TOP=    ../..
7 CC=     cc
8 CPP=    $(CC) -E
9 INCLUDES=
10 CFLAG=-g
11 INSTALL_PREFIX=
12 OPENSSLDIR=     /usr/local/ssl
13 INSTALLTOP=/usr/local/ssl
14 MAKEDEPPROG=    makedepend
15 MAKEDEPEND=     $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
16 MAKEFILE=       Makefile
17 AR=             ar r
18
19 CFLAGS= $(INCLUDES) $(CFLAG)
20
21 GENERAL=Makefile
22 TEST=md4test.c
23 APPS=md4.c
24
25 LIB=$(TOP)/libcrypto.a
26 LIBSRC=md4_dgst.c md4_one.c
27 LIBOBJ=md4_dgst.o md4_one.o
28
29 SRC= $(LIBSRC)
30
31 EXHEADER= md4.h
32 HEADER= md4_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) || echo Never mind.
44         @touch lib
45
46 files:
47         $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
48
49 links:
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)
53
54 install:
55         @headerlist="$(EXHEADER)"; for i in $$headerlist ; \
56         do  \
57         (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
58         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
59         done;
60
61 tags:
62         ctags $(SRC)
63
64 tests:
65
66 lint:
67         lint -DLINT $(INCLUDES) $(SRC)>fluff
68
69 depend:
70         $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
71
72 dclean:
73         $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
74         mv -f Makefile.new $(MAKEFILE)
75
76 clean:
77         rm -f asm/mx86unix.cpp *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
78
79 # DO NOT DELETE THIS LINE -- make depend depends on it.
80
81 md4_dgst.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h
82 md4_dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
83 md4_dgst.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h
84 md4_dgst.o: ../../include/openssl/md4.h ../../include/openssl/opensslconf.h
85 md4_dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
86 md4_dgst.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
87 md4_dgst.o: ../md32_common.h md4_dgst.c md4_locl.h
88 md4_one.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
89 md4_one.o: ../../include/openssl/md4.h ../../include/openssl/opensslconf.h
90 md4_one.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
91 md4_one.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
92 md4_one.o: md4_one.c