OpenSSL: update to 1.0.2c
[tomato.git] / release / src / router / openssl / crypto / md5 / Makefile
blobf5240da74cd791f9cd8f38f0c3b7f293464666d4
2 # OpenSSL/crypto/md5/Makefile
5 DIR= md5
6 TOP= ../..
7 CC= cc
8 CPP= $(CC) -E
9 INCLUDES=-I.. -I$(TOP) -I../../include
10 CFLAG=-g
11 MAKEFILE= Makefile
12 AR= ar r
14 MD5_ASM_OBJ=
16 CFLAGS= $(INCLUDES) $(CFLAG)
17 ASFLAGS= $(INCLUDES) $(ASFLAG)
18 AFLAGS= $(ASFLAGS)
20 GENERAL=Makefile
21 TEST=md5test.c
22 APPS=
24 LIB=$(TOP)/libcrypto.a
25 LIBSRC=md5_dgst.c md5_one.c
26 LIBOBJ=md5_dgst.o md5_one.o $(MD5_ASM_OBJ)
28 SRC= $(LIBSRC)
30 EXHEADER= md5.h
31 HEADER= md5_locl.h $(EXHEADER)
33 ALL= $(GENERAL) $(SRC) $(HEADER)
35 top:
36 (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
38 all: lib
40 lib: $(LIBOBJ)
41 $(AR) $(LIB) $(LIBOBJ)
42 $(RANLIB) $(LIB) || echo Never mind.
43 @touch lib
45 md5-586.s: asm/md5-586.pl ../perlasm/x86asm.pl
46 $(PERL) asm/md5-586.pl $(PERLASM_SCHEME) $(CFLAGS) > $@
48 md5-x86_64.s: asm/md5-x86_64.pl
49 $(PERL) asm/md5-x86_64.pl $(PERLASM_SCHEME) > $@
51 md5-ia64.s: asm/md5-ia64.S
52 $(CC) $(CFLAGS) -E asm/md5-ia64.S | \
53 $(PERL) -ne 's/;\s+/;\n/g; print;' > $@
55 md5-sparcv9.S: asm/md5-sparcv9.pl
56 $(PERL) asm/md5-sparcv9.pl $@ $(CFLAGS)
58 files:
59 $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
61 links:
62 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
63 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
64 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
66 install:
67 @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
68 @headerlist="$(EXHEADER)"; for i in $$headerlist ; \
69 do \
70 (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
71 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
72 done;
74 tags:
75 ctags $(SRC)
77 tests:
79 lint:
80 lint -DLINT $(INCLUDES) $(SRC)>fluff
82 update: depend
84 depend:
85 @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
86 $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
88 dclean:
89 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
90 mv -f Makefile.new $(MAKEFILE)
92 clean:
93 rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
95 # DO NOT DELETE THIS LINE -- make depend depends on it.
97 md5_dgst.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
98 md5_dgst.o: ../../include/openssl/md5.h ../../include/openssl/opensslconf.h
99 md5_dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
100 md5_dgst.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
101 md5_dgst.o: ../../include/openssl/symhacks.h ../md32_common.h md5_dgst.c
102 md5_dgst.o: md5_locl.h
103 md5_one.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
104 md5_one.o: ../../include/openssl/md5.h ../../include/openssl/opensslconf.h
105 md5_one.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
106 md5_one.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
107 md5_one.o: ../../include/openssl/symhacks.h md5_one.c