| OLD | NEW |
| 1 DIR=jpake | 1 DIR=jpake |
| 2 TOP=../.. | 2 TOP=../.. |
| 3 | 3 |
| 4 CFLAGS= $(INCLUDES) $(CFLAG) | 4 CFLAGS= $(INCLUDES) $(CFLAG) |
| 5 | 5 |
| 6 LIB=$(TOP)/libcrypto.a | 6 LIB=$(TOP)/libcrypto.a |
| 7 LIBOBJ=jpake.o jpake_err.o | 7 LIBOBJ=jpake.o jpake_err.o |
| 8 LIBSRC=jpake.c jpake_err.c | 8 LIBSRC=jpake.c jpake_err.c |
| 9 | 9 |
| 10 EXHEADER=jpake.h | 10 EXHEADER=jpake.h |
| 11 TEST=jpaketest.c | 11 TEST=jpaketest.c |
| 12 | 12 |
| 13 top: | 13 top: |
| 14 (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | 14 (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) |
| 15 | 15 |
| 16 all: lib | 16 all: lib |
| 17 | 17 |
| 18 lib: $(LIBOBJ) | 18 lib: $(LIBOBJ) |
| 19 » $(ARX) $(LIB) $(LIBOBJ) | 19 » $(AR) $(LIB) $(LIBOBJ) |
| 20 $(RANLIB) $(LIB) || echo Never mind. | 20 $(RANLIB) $(LIB) || echo Never mind. |
| 21 @touch lib | 21 @touch lib |
| 22 | 22 |
| 23 links: | 23 links: |
| 24 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | 24 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 25 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | 25 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 26 | 26 |
| 27 install: | 27 install: |
| 28 @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile... | 28 @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile... |
| 29 @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | 29 @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ |
| (...skipping 25 matching lines...) Expand all Loading... |
| 55 jpake.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 55 jpake.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 56 jpake.o: ../../include/openssl/symhacks.h jpake.c jpake.h | 56 jpake.o: ../../include/openssl/symhacks.h jpake.c jpake.h |
| 57 jpake_err.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 57 jpake_err.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
| 58 jpake_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 58 jpake_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
| 59 jpake_err.o: ../../include/openssl/err.h ../../include/openssl/jpake.h | 59 jpake_err.o: ../../include/openssl/err.h ../../include/openssl/jpake.h |
| 60 jpake_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 60 jpake_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
| 61 jpake_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 61 jpake_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 62 jpake_err.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 62 jpake_err.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 63 jpake_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 63 jpake_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 64 jpake_err.o: jpake_err.c | 64 jpake_err.o: jpake_err.c |
| OLD | NEW |