Makefile 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234
  1. #
  2. # OpenSSL/crypto/Makefile
  3. #
  4. DIR= crypto
  5. TOP= ..
  6. CC= cc
  7. INCLUDE= -I. -I$(TOP) -I../include $(ZLIB_INCLUDE)
  8. # INCLUDES targets sudbirs!
  9. INCLUDES= -I.. -I../.. -I../modes -I../asn1 -I../evp -I../../include $(ZLIB_INCLUDE)
  10. CFLAG= -g
  11. MAKEDEPPROG= makedepend
  12. MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
  13. MAKEFILE= Makefile
  14. RM= rm -f
  15. AR= ar r
  16. RECURSIVE_MAKE= [ -n "$(SDIRS)" ] && for i in $(SDIRS) ; do \
  17. (cd $$i && echo "making $$target in $(DIR)/$$i..." && \
  18. $(MAKE) -e TOP=../.. DIR=$$i INCLUDES='$(INCLUDES)' $$target ) || exit 1; \
  19. done;
  20. PEX_LIBS=
  21. EX_LIBS=
  22. CFLAGS= $(INCLUDE) $(CFLAG)
  23. ASFLAGS= $(INCLUDE) $(ASFLAG)
  24. AFLAGS=$(ASFLAGS)
  25. CPUID_OBJ=mem_clr.o
  26. LIBS=
  27. GENERAL=Makefile README crypto-lib.com install.com
  28. LIB= $(TOP)/libcrypto.a
  29. SHARED_LIB= libcrypto$(SHLIB_EXT)
  30. LIBSRC= cryptlib.c mem.c mem_clr.c mem_dbg.c cversion.c ex_data.c cpt_err.c \
  31. ebcdic.c uid.c o_time.c o_str.c o_dir.c thr_id.c lock.c fips_ers.c \
  32. o_init.c o_fips.c
  33. LIBOBJ= cryptlib.o mem.o mem_dbg.o cversion.o ex_data.o cpt_err.o \
  34. ebcdic.o uid.o o_time.o o_str.o o_dir.o thr_id.o lock.o fips_ers.o \
  35. o_init.o o_fips.o $(CPUID_OBJ)
  36. SRC= $(LIBSRC)
  37. EXHEADER= crypto.h opensslv.h opensslconf.h ebcdic.h symhacks.h \
  38. ossl_typ.h
  39. HEADER= cryptlib.h buildinf.h md32_common.h o_time.h o_str.h o_dir.h $(EXHEADER)
  40. ALL= $(GENERAL) $(SRC) $(HEADER)
  41. top:
  42. @(cd ..; $(MAKE) DIRS=$(DIR) all)
  43. all: shared
  44. fips: cryptlib.o thr_id.o uid.o $(CPUID_OBJ)
  45. [ -n "$(SDIRS)" ] && for i in $(SDIRS) ; do \
  46. ( obj=`$(PERL) $(TOP)/util/fipsobj.pl $$i` && \
  47. cd $$i && echo "making fips in $(DIR)/$$i..." && \
  48. $(MAKE) -e TOP=../.. DIR=$$i INCLUDES='$(INCLUDES)' $$obj ) || exit 1; \
  49. done;
  50. buildinf.h: ../Makefile
  51. ( echo "#ifndef MK1MF_BUILD"; \
  52. echo ' /* auto-generated by crypto/Makefile for crypto/cversion.c */'; \
  53. echo ' #define CFLAGS "$(CC) $(CFLAG)"'; \
  54. echo ' #define PLATFORM "$(PLATFORM)"'; \
  55. echo " #define DATE \"`LC_ALL=C LC_TIME=C date`\""; \
  56. echo '#endif' ) >buildinf.h
  57. x86cpuid.s: x86cpuid.pl perlasm/x86asm.pl
  58. $(PERL) x86cpuid.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
  59. applink.o: $(TOP)/ms/applink.c
  60. $(CC) $(CFLAGS) -c -o $@ $(TOP)/ms/applink.c
  61. uplink.o: $(TOP)/ms/uplink.c applink.o
  62. $(CC) $(CFLAGS) -c -o $@ $(TOP)/ms/uplink.c
  63. uplink-x86.s: $(TOP)/ms/uplink-x86.pl
  64. $(PERL) $(TOP)/ms/uplink-x86.pl $(PERLASM_SCHEME) > $@
  65. x86_64cpuid.s: x86_64cpuid.pl; $(PERL) x86_64cpuid.pl $(PERLASM_SCHEME) > $@
  66. ia64cpuid.s: ia64cpuid.S; $(CC) $(CFLAGS) -E ia64cpuid.S > $@
  67. ppccpuid.s: ppccpuid.pl; $(PERL) ppccpuid.pl $(PERLASM_SCHEME) $@
  68. pariscid.s: pariscid.pl; $(PERL) pariscid.pl $(PERLASM_SCHEME) $@
  69. alphacpuid.s: alphacpuid.pl
  70. $(PERL) $< | $(CC) -E - | tee $@ > /dev/null
  71. arm64cpuid.S: arm64cpuid.pl; $(PERL) arm64cpuid.pl $(PERLASM_SCHEME) > $@
  72. subdirs:
  73. @target=all; $(RECURSIVE_MAKE)
  74. files:
  75. $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
  76. @target=files; $(RECURSIVE_MAKE)
  77. links:
  78. @$(PERL) $(TOP)/util/mklink.pl ../include/openssl $(EXHEADER)
  79. @$(PERL) $(TOP)/util/mklink.pl ../test $(TEST)
  80. @$(PERL) $(TOP)/util/mklink.pl ../apps $(APPS)
  81. @target=links; $(RECURSIVE_MAKE)
  82. # lib: $(LIB): are splitted to avoid end-less loop
  83. lib: $(LIB)
  84. @touch lib
  85. $(LIB): $(LIBOBJ)
  86. $(ARX) $(LIB) $(LIBOBJ)
  87. $(RANLIB) $(LIB) || echo Never mind.
  88. shared: buildinf.h lib subdirs
  89. if [ -n "$(SHARED_LIBS)" ]; then \
  90. (cd ..; $(MAKE) $(SHARED_LIB)); \
  91. fi
  92. libs:
  93. @target=lib; $(RECURSIVE_MAKE)
  94. install:
  95. @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
  96. @headerlist="$(EXHEADER)"; for i in $$headerlist ;\
  97. do \
  98. (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
  99. chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
  100. done;
  101. @target=install; $(RECURSIVE_MAKE)
  102. lint:
  103. @target=lint; $(RECURSIVE_MAKE)
  104. depend:
  105. @[ -z "$(THIS)" -o -f buildinf.h ] || touch buildinf.h # fake buildinf.h if it does not exist
  106. @[ -z "$(THIS)" ] || $(MAKEDEPEND) -- $(CFLAG) $(INCLUDE) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
  107. @[ -z "$(THIS)" -o -s buildinf.h ] || rm buildinf.h
  108. @[ -z "$(THIS)" ] || (set -e; target=depend; $(RECURSIVE_MAKE) )
  109. @if [ -z "$(THIS)" ]; then $(MAKE) -f $(TOP)/Makefile reflect THIS=$@; fi
  110. clean:
  111. rm -f buildinf.h *.s *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
  112. @target=clean; $(RECURSIVE_MAKE)
  113. dclean:
  114. $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
  115. mv -f Makefile.new $(MAKEFILE)
  116. rm -f opensslconf.h
  117. @target=dclean; $(RECURSIVE_MAKE)
  118. # DO NOT DELETE THIS LINE -- make depend depends on it.
  119. cpt_err.o: ../include/openssl/bio.h ../include/openssl/crypto.h
  120. cpt_err.o: ../include/openssl/e_os2.h ../include/openssl/err.h
  121. cpt_err.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h
  122. cpt_err.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
  123. cpt_err.o: ../include/openssl/safestack.h ../include/openssl/stack.h
  124. cpt_err.o: ../include/openssl/symhacks.h cpt_err.c
  125. cryptlib.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h
  126. cryptlib.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
  127. cryptlib.o: ../include/openssl/err.h ../include/openssl/lhash.h
  128. cryptlib.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
  129. cryptlib.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
  130. cryptlib.o: ../include/openssl/stack.h ../include/openssl/symhacks.h cryptlib.c
  131. cryptlib.o: cryptlib.h
  132. cversion.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h
  133. cversion.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
  134. cversion.o: ../include/openssl/err.h ../include/openssl/lhash.h
  135. cversion.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
  136. cversion.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
  137. cversion.o: ../include/openssl/stack.h ../include/openssl/symhacks.h buildinf.h
  138. cversion.o: cryptlib.h cversion.c
  139. ebcdic.o: ../include/openssl/e_os2.h ../include/openssl/opensslconf.h ebcdic.c
  140. ex_data.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h
  141. ex_data.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
  142. ex_data.o: ../include/openssl/err.h ../include/openssl/lhash.h
  143. ex_data.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
  144. ex_data.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
  145. ex_data.o: ../include/openssl/stack.h ../include/openssl/symhacks.h cryptlib.h
  146. ex_data.o: ex_data.c
  147. fips_ers.o: ../include/openssl/opensslconf.h fips_ers.c
  148. lock.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h
  149. lock.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
  150. lock.o: ../include/openssl/err.h ../include/openssl/lhash.h
  151. lock.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
  152. lock.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
  153. lock.o: ../include/openssl/stack.h ../include/openssl/symhacks.h cryptlib.h
  154. lock.o: lock.c
  155. mem.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h
  156. mem.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
  157. mem.o: ../include/openssl/err.h ../include/openssl/lhash.h
  158. mem.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
  159. mem.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
  160. mem.o: ../include/openssl/stack.h ../include/openssl/symhacks.h cryptlib.h
  161. mem.o: mem.c
  162. mem_clr.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
  163. mem_clr.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
  164. mem_clr.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
  165. mem_clr.o: ../include/openssl/stack.h ../include/openssl/symhacks.h mem_clr.c
  166. mem_dbg.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h
  167. mem_dbg.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
  168. mem_dbg.o: ../include/openssl/err.h ../include/openssl/lhash.h
  169. mem_dbg.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
  170. mem_dbg.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
  171. mem_dbg.o: ../include/openssl/stack.h ../include/openssl/symhacks.h cryptlib.h
  172. mem_dbg.o: mem_dbg.c
  173. o_dir.o: ../e_os.h ../include/openssl/e_os2.h ../include/openssl/opensslconf.h
  174. o_dir.o: LPdir_unix.c o_dir.c o_dir.h
  175. o_fips.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h
  176. o_fips.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
  177. o_fips.o: ../include/openssl/err.h ../include/openssl/lhash.h
  178. o_fips.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
  179. o_fips.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
  180. o_fips.o: ../include/openssl/stack.h ../include/openssl/symhacks.h cryptlib.h
  181. o_fips.o: o_fips.c
  182. o_init.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/crypto.h
  183. o_init.o: ../include/openssl/e_os2.h ../include/openssl/err.h
  184. o_init.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h
  185. o_init.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
  186. o_init.o: ../include/openssl/safestack.h ../include/openssl/stack.h
  187. o_init.o: ../include/openssl/symhacks.h o_init.c
  188. o_str.o: ../e_os.h ../include/openssl/e_os2.h ../include/openssl/opensslconf.h
  189. o_str.o: o_str.c o_str.h
  190. o_time.o: ../include/openssl/e_os2.h ../include/openssl/opensslconf.h o_time.c
  191. o_time.o: o_time.h
  192. thr_id.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h
  193. thr_id.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
  194. thr_id.o: ../include/openssl/err.h ../include/openssl/lhash.h
  195. thr_id.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
  196. thr_id.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
  197. thr_id.o: ../include/openssl/stack.h ../include/openssl/symhacks.h cryptlib.h
  198. thr_id.o: thr_id.c
  199. uid.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
  200. uid.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
  201. uid.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
  202. uid.o: ../include/openssl/stack.h ../include/openssl/symhacks.h uid.c