diff options
Diffstat (limited to 'src/lib/libcrypto/ripemd')
| -rw-r--r-- | src/lib/libcrypto/ripemd/Makefile.ssl | 104 |
1 files changed, 104 insertions, 0 deletions
diff --git a/src/lib/libcrypto/ripemd/Makefile.ssl b/src/lib/libcrypto/ripemd/Makefile.ssl new file mode 100644 index 0000000000..67d47ceb2c --- /dev/null +++ b/src/lib/libcrypto/ripemd/Makefile.ssl | |||
| @@ -0,0 +1,104 @@ | |||
| 1 | # | ||
| 2 | # SSLeay/crypto/ripemd/Makefile | ||
| 3 | # | ||
| 4 | |||
| 5 | DIR= ripemd | ||
| 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= makedepend -f Makefile.ssl | ||
| 14 | MAKEFILE= Makefile.ssl | ||
| 15 | AR= ar r | ||
| 16 | |||
| 17 | RIP_ASM_OBJ= | ||
| 18 | |||
| 19 | CFLAGS= $(INCLUDES) $(CFLAG) | ||
| 20 | |||
| 21 | GENERAL=Makefile | ||
| 22 | TEST=rmdtest.c | ||
| 23 | APPS=rmd160.c | ||
| 24 | |||
| 25 | LIB=$(TOP)/libcrypto.a | ||
| 26 | LIBSRC=rmd_dgst.c rmd_one.c | ||
| 27 | LIBOBJ=rmd_dgst.o rmd_one.o $(RMD160_ASM_OBJ) | ||
| 28 | |||
| 29 | SRC= $(LIBSRC) | ||
| 30 | |||
| 31 | EXHEADER= ripemd.h | ||
| 32 | HEADER= rmd_locl.h rmdconst.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 | sh $(TOP)/util/ranlib.sh $(LIB) | ||
| 44 | @touch lib | ||
| 45 | |||
| 46 | # elf | ||
| 47 | asm/rm86-elf.o: asm/rm86unix.cpp | ||
| 48 | $(CPP) -DELF asm/rm86unix.cpp | as -o asm/rm86-elf.o | ||
| 49 | |||
| 50 | # solaris | ||
| 51 | asm/rm86-sol.o: asm/rm86unix.cpp | ||
| 52 | $(CC) -E -DSOL asm/rm86unix.cpp | sed 's/^#.*//' > asm/rm86-sol.s | ||
| 53 | as -o asm/rm86-sol.o asm/rm86-sol.s | ||
| 54 | rm -f asm/rm86-sol.s | ||
| 55 | |||
| 56 | # a.out | ||
| 57 | asm/rm86-out.o: asm/rm86unix.cpp | ||
| 58 | $(CPP) -DOUT asm/rm86unix.cpp | as -o asm/rm86-out.o | ||
| 59 | |||
| 60 | # bsdi | ||
| 61 | asm/rm86bsdi.o: asm/rm86unix.cpp | ||
| 62 | $(CPP) -DBSDI asm/rm86unix.cpp | as -o asm/rm86bsdi.o | ||
| 63 | |||
| 64 | asm/rm86unix.cpp: | ||
| 65 | (cd asm; perl rmd-586.pl cpp >rm86unix.cpp) | ||
| 66 | |||
| 67 | files: | ||
| 68 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | ||
| 69 | |||
| 70 | links: | ||
| 71 | /bin/rm -f Makefile | ||
| 72 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | ||
| 73 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | ||
| 74 | $(TOP)/util/mklink.sh ../../test $(TEST) | ||
| 75 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
| 76 | |||
| 77 | install: | ||
| 78 | @for i in $(EXHEADER) ; \ | ||
| 79 | do \ | ||
| 80 | (cp $$i $(INSTALLTOP)/include/$$i; \ | ||
| 81 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | ||
| 82 | done; | ||
| 83 | |||
| 84 | tags: | ||
| 85 | ctags $(SRC) | ||
| 86 | |||
| 87 | tests: | ||
| 88 | |||
| 89 | lint: | ||
| 90 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
| 91 | |||
| 92 | depend: | ||
| 93 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | ||
| 94 | |||
| 95 | dclean: | ||
| 96 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
| 97 | mv -f Makefile.new $(MAKEFILE) | ||
| 98 | |||
| 99 | clean: | ||
| 100 | /bin/rm -f *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | ||
| 101 | |||
| 102 | errors: | ||
| 103 | |||
| 104 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
