OLD | NEW |
1 # | 1 # |
2 # OpenSSL/crypto/md4/Makefile | 2 # OpenSSL/crypto/md4/Makefile |
3 # | 3 # |
4 | 4 |
5 DIR= md4 | 5 DIR= md4 |
6 TOP= ../.. | 6 TOP= ../.. |
7 CC= cc | 7 CC= cc |
8 CPP= $(CC) -E | 8 CPP= $(CC) -E |
9 INCLUDES= | 9 INCLUDES= |
10 CFLAG=-g | 10 CFLAG=-g |
(...skipping 16 matching lines...) Expand all Loading... |
27 HEADER= md4_locl.h $(EXHEADER) | 27 HEADER= md4_locl.h $(EXHEADER) |
28 | 28 |
29 ALL= $(GENERAL) $(SRC) $(HEADER) | 29 ALL= $(GENERAL) $(SRC) $(HEADER) |
30 | 30 |
31 top: | 31 top: |
32 (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | 32 (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) |
33 | 33 |
34 all: lib | 34 all: lib |
35 | 35 |
36 lib: $(LIBOBJ) | 36 lib: $(LIBOBJ) |
37 » $(ARX) $(LIB) $(LIBOBJ) | 37 » $(AR) $(LIB) $(LIBOBJ) |
38 $(RANLIB) $(LIB) || echo Never mind. | 38 $(RANLIB) $(LIB) || echo Never mind. |
39 @touch lib | 39 @touch lib |
40 | 40 |
41 files: | 41 files: |
42 $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | 42 $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO |
43 | 43 |
44 links: | 44 links: |
45 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | 45 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
46 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | 46 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
47 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | 47 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
(...skipping 14 matching lines...) Expand all Loading... |
62 lint: | 62 lint: |
63 lint -DLINT $(INCLUDES) $(SRC)>fluff | 63 lint -DLINT $(INCLUDES) $(SRC)>fluff |
64 | 64 |
65 depend: | 65 depend: |
66 @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile... | 66 @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile... |
67 $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | 67 $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) |
68 | 68 |
69 dclean: | 69 dclean: |
70 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKE
FILE) >Makefile.new | 70 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKE
FILE) >Makefile.new |
71 mv -f Makefile.new $(MAKEFILE) | 71 mv -f Makefile.new $(MAKEFILE) |
| 72 rm -f ../../include/openssl/$(EXHEADER) ../../test/$(TEST) ../../apps/$(
APPS) |
72 | 73 |
73 clean: | 74 clean: |
74 rm -f asm/mx86unix.cpp *.o asm/*.o *.obj lib tags core .pure .nfs* *.old
*.bak fluff | 75 rm -f asm/mx86unix.cpp *.o asm/*.o *.obj lib tags core .pure .nfs* *.old
*.bak fluff |
75 | 76 |
76 # DO NOT DELETE THIS LINE -- make depend depends on it. | 77 # DO NOT DELETE THIS LINE -- make depend depends on it. |
77 | 78 |
78 md4_dgst.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h | 79 md4_dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/md4.h |
79 md4_dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 80 md4_dgst.o: ../../include/openssl/opensslconf.h |
80 md4_dgst.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 81 md4_dgst.o: ../../include/openssl/opensslv.h ../md32_common.h md4_dgst.c |
81 md4_dgst.o: ../../include/openssl/md4.h ../../include/openssl/opensslconf.h | |
82 md4_dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | |
83 md4_dgst.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | |
84 md4_dgst.o: ../../include/openssl/symhacks.h ../md32_common.h md4_dgst.c | |
85 md4_dgst.o: md4_locl.h | 82 md4_dgst.o: md4_locl.h |
86 md4_one.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 83 md4_one.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
87 md4_one.o: ../../include/openssl/md4.h ../../include/openssl/opensslconf.h | 84 md4_one.o: ../../include/openssl/md4.h ../../include/openssl/opensslconf.h |
88 md4_one.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 85 md4_one.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
89 md4_one.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 86 md4_one.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
90 md4_one.o: ../../include/openssl/symhacks.h md4_one.c | 87 md4_one.o: ../../include/openssl/symhacks.h md4_one.c |
OLD | NEW |