Makefile.source 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269
  1. #
  2. # Copyright (C) 2011-2017 Intel Corporation. All rights reserved.
  3. #
  4. # Redistribution and use in source and binary forms, with or without
  5. # modification, are permitted provided that the following conditions
  6. # are met:
  7. #
  8. # * Redistributions of source code must retain the above copyright
  9. # notice, this list of conditions and the following disclaimer.
  10. # * Redistributions in binary form must reproduce the above copyright
  11. # notice, this list of conditions and the following disclaimer in
  12. # the documentation and/or other materials provided with the
  13. # distribution.
  14. # * Neither the name of Intel Corporation nor the names of its
  15. # contributors may be used to endorse or promote products derived
  16. # from this software without specific prior written permission.
  17. #
  18. # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  19. # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  20. # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  21. # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  22. # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  23. # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  24. # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  25. # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  26. # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  27. # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  28. # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  29. #
  30. #
  31. # This Makefile will compile SDK to generate various components
  32. # including:
  33. # - Trusted libraries
  34. # - tstdc: libsgx_tstdc.a
  35. # - tstdcxx: libsgx_tstdcxx.a
  36. # - tcxx: libsgx_tcxx.a
  37. # - tservice: libsgx_tservice.a
  38. # - trts: libsgx_trts.a
  39. # - tcrypto: libsgx_tcrypto.a
  40. # - tkey_exchange: libsgx_tkey_exchange.a
  41. # - tprotected_fs: libsgx_tprotected_fs.a
  42. # - tsetjmp: libsgx_tsetjmp.a
  43. # - tcmalloc: libsgx_tcmalloc.a
  44. # - Untrtusted libraries
  45. # - ukey_exchange: libsgx_ukey_exchange.a
  46. # - uprotected_fs: libsgx_uprotected_fs.a
  47. # - ptrace: libsgx_ptrace.so, gdb-sgx-plugin
  48. # - sample_crypto: libsample_crypto.so (for sample code use)
  49. # - Tools
  50. # - signtool: sgx_sign
  51. # - edger8r: sgx_edger8r
  52. # - Simulation libraries and tools
  53. # - simulation: libsgx_trts_sim.a, libsgx_tservice_sim.a, libsgx_urts_sim.a, libsgx_uae_service_sim.a, sgx_config_cpusvn
  54. #
  55. include ../buildenv.mk
  56. LIBTLIBC := $(BUILD_DIR)/libsgx_tstdc.a
  57. LIBTLIBCXX := $(BUILD_DIR)/libsgx_tstdcxx.a
  58. LIBTCXX := $(BUILD_DIR)/libsgx_tcxx.a
  59. LIBTSE := $(BUILD_DIR)/libsgx_tservice.a
  60. .PHONY: all
  61. all: tstdc tstdcxx tcxx tservice trts tcrypto tkey_exchange ukey_exchange tprotected_fs uprotected_fs ptrace sample_crypto simulation signtool edger8r tsetjmp tcmalloc
  62. # ---------------------------------------------------
  63. # tstdc
  64. # includes: tlibc, libm, tlibthread, compiler-rt
  65. # ---------------------------------------------------
  66. .PHONY: tstdc
  67. tstdc: $(LIBTLIBC)
  68. $(LIBTLIBC): tlibthread compiler-rt sgx_libm
  69. $(MAKE) -C tlibc/ -j4 2> /dev/null
  70. @$(MKDIR) $(BUILD_DIR)/.libm $(BUILD_DIR)/.tlibc $(BUILD_DIR)/.tlibthread
  71. @$(RM) -f $(BUILD_DIR)/.libm/* $(BUILD_DIR)/.tlibc/* $(BUILD_DIR)/.tlibthread/*
  72. @cd $(BUILD_DIR)/.libm && $(AR) x $(LINUX_EXTERNAL_DIR)/sgx_libm/libm.a
  73. @cd $(BUILD_DIR)/.tlibc && $(AR) x $(LINUX_SDK_DIR)/tlibc/libtlibc.a
  74. @cd $(BUILD_DIR)/.tlibthread && $(AR) x $(LINUX_SDK_DIR)/tlibthread/libtlibthread.a
  75. $(CP) compiler-rt/libcompiler-rt.a $@
  76. $(AR) rsD $@ $(BUILD_DIR)/.libm/*.o $(BUILD_DIR)/.tlibc/*.o $(BUILD_DIR)/.tlibthread/*.o
  77. @$(RM) -rf $(BUILD_DIR)/.libm $(BUILD_DIR)/.tlibc $(BUILD_DIR)/.tlibthread
  78. .PHONY: tlibthread
  79. tlibthread:
  80. $(MAKE) -C tlibthread/
  81. .PHONY: compiler-rt
  82. compiler-rt:
  83. $(MAKE) -C compiler-rt/ 2> /dev/null
  84. LIBM_PATH = $(LINUX_EXTERNAL_DIR)/sgx_libm/
  85. M_ARCH = intel64
  86. ifneq ($(ARCH), x86_64)
  87. M_ARCH := ia32
  88. endif
  89. .PHONY: sgx_libm
  90. sgx_libm:
  91. $(MAKE) -C $(LIBM_PATH) ARCH=$(M_ARCH) 2> /dev/null
  92. # ---------------------------------------------------
  93. # tstdcxx
  94. # includes: cpprt, tlibstdcxx
  95. # ---------------------------------------------------
  96. .PHONY: tstdcxx
  97. tstdcxx: $(LIBTLIBCXX)
  98. $(LIBTLIBCXX): cpprt tlibstdcxx
  99. @$(MKDIR) $(BUILD_DIR)/.cpprt $(BUILD_DIR)/.tlibstdcxx
  100. @$(RM) -f $(BUILD_DIR)/.cpprt/* $(BUILD_DIR)/.tlibstdcxx/*
  101. @cd $(BUILD_DIR)/.cpprt && $(AR) x $(LINUX_SDK_DIR)/cpprt/libcpprt.a
  102. @cd $(BUILD_DIR)/.tlibstdcxx && $(AR) x $(LINUX_SDK_DIR)/tlibstdcxx/libtlibstdcxx.a
  103. $(AR) rcsD $@ $(BUILD_DIR)/.cpprt/*.o $(BUILD_DIR)/.tlibstdcxx/*.o
  104. @$(RM) -rf $(BUILD_DIR)/.cpprt $(BUILD_DIR)/.tlibstdcxx
  105. .PHONY: cpprt
  106. cpprt:
  107. $(MAKE) -C cpprt
  108. .PHONY: tlibstdcxx
  109. tlibstdcxx: $(BUILD_DIR)
  110. $(MAKE) -C tlibstdcxx/ 2> /dev/null
  111. $(CP) tlibstdcxx/README.sgx $(BUILD_DIR)/STLport_Changes_SGX.txt
  112. # ---------------------------------------------------
  113. # tcxx
  114. # includes: cpprt, tlibcxx
  115. # ---------------------------------------------------
  116. .PHONY: tcxx
  117. tcxx: $(LIBTCXX)
  118. $(LIBTCXX): cpprt tlibcxx
  119. @$(MKDIR) $(BUILD_DIR)/._cpprt $(BUILD_DIR)/.tlibcxx
  120. @$(RM) -f $(BUILD_DIR)/._cpprt/* $(BUILD_DIR)/.tlibcxx/*
  121. @cd $(BUILD_DIR)/._cpprt && $(AR) x $(LINUX_SDK_DIR)/cpprt/libcpprt.a
  122. @cd $(BUILD_DIR)/.tlibcxx && $(AR) x $(LINUX_SDK_DIR)/tlibcxx/libcxx.a
  123. $(AR) rcsD $@ $(BUILD_DIR)/._cpprt/*.o $(BUILD_DIR)/.tlibcxx/*.o
  124. @$(RM) -rf $(BUILD_DIR)/._cpprt $(BUILD_DIR)/.tlibcxx
  125. .PHONY: tlibcxx
  126. tlibcxx: $(BUILD_DIR)
  127. $(MAKE) -C tlibcxx/ 2> /dev/null
  128. $(CP) tlibcxx/README.sgx $(BUILD_DIR)/libc++_Changes_SGX.txt
  129. # ---------------------------------------------------
  130. # tse
  131. # includes: selib, tseal, tae_service, ec_dh_lib
  132. # ---------------------------------------------------
  133. .PHONY: tservice
  134. tservice: $(LIBTSE)
  135. $(LIBTSE): selib tseal tae_service
  136. @$(MKDIR) $(BUILD_DIR)/.tservice
  137. @$(RM) -f $(BUILD_DIR)/.tservice/*
  138. cd $(BUILD_DIR)/.tservice && $(AR) x $(LINUX_SDK_DIR)/tseal/linux/libtSeal.a
  139. cd $(BUILD_DIR)/.tservice && $(AR) x $(LINUX_SDK_DIR)/tae_service/libtae_service.a
  140. $(CP) $(LINUX_SDK_DIR)/selib/linux/libselib.a $@
  141. $(AR) rsD $@ $(BUILD_DIR)/.tservice/*.o
  142. @$(RM) -rf $(BUILD_DIR)/.tservice
  143. .PHONY: selib
  144. selib:
  145. $(MAKE) -C selib/linux/
  146. .PHONY: tseal
  147. tseal:
  148. $(MAKE) -C tseal/linux/
  149. .PHONY: tae_service
  150. tae_service: edger8r
  151. $(MAKE) -C tae_service
  152. # ---------------------------------------------------
  153. # Other trusted libraries
  154. # ---------------------------------------------------
  155. .PHONY: trts
  156. trts:
  157. $(MAKE) -C trts/
  158. .PHONY: tcrypto
  159. tcrypto:
  160. $(MAKE) -C tlibcrypto/
  161. .PHONY: tkey_exchange
  162. tkey_exchange: edger8r
  163. $(MAKE) -C tkey_exchange
  164. .PHONY: tsetjmp
  165. tsetjmp:
  166. $(MAKE) -C tsetjmp/
  167. .PHONY: tcmalloc
  168. tcmalloc:
  169. $(MAKE) -C gperftools/
  170. .PHONY: tprotected_fs
  171. tprotected_fs: edger8r
  172. $(MAKE) -C protected_fs/sgx_tprotected_fs
  173. # ---------------------------------------------------
  174. # Untrusted libraries
  175. # ---------------------------------------------------
  176. .PHONY: ukey_exchange
  177. ukey_exchange:
  178. $(MAKE) -C ukey_exchange
  179. .PHONY: uprotected_fs
  180. uprotected_fs: edger8r
  181. $(MAKE) -C protected_fs/sgx_uprotected_fs
  182. .PHONY: ptrace
  183. ptrace:
  184. $(MAKE) -C debugger_interface/linux/
  185. .PHONY: sample_crypto
  186. sample_crypto:
  187. $(MAKE) -C sample_libcrypto
  188. # ---------------------------------------------------
  189. # simualtion libraries and tools
  190. # ---------------------------------------------------
  191. .PHONY: simulation
  192. simulation: edger8r
  193. $(MAKE) -C simulation/
  194. # ---------------------------------------------------
  195. # tools
  196. # ---------------------------------------------------
  197. .PHONY: signtool
  198. signtool:
  199. $(MAKE) -C sign_tool/SignTool/
  200. .PHONY: edger8r
  201. edger8r:
  202. $(MAKE) -C edger8r/linux/
  203. $(BUILD_DIR):
  204. $(MKDIR) $@
  205. .PHONY: clean
  206. clean:
  207. $(MAKE) -C $(LIBM_PATH) ARCH=$(M_ARCH) clean
  208. $(MAKE) -C tlibc/ clean
  209. $(MAKE) -C tlibthread/ clean
  210. $(MAKE) -C compiler-rt/ clean
  211. $(MAKE) -C cpprt clean
  212. $(MAKE) -C tlibstdcxx/ clean
  213. $(MAKE) -C tlibcxx/ clean
  214. $(MAKE) -C tseal/linux/ clean
  215. $(MAKE) -C selib/linux/ clean
  216. $(MAKE) -C tae_service/ clean
  217. $(MAKE) -C trts/ clean
  218. $(MAKE) -C tsetjmp/ clean
  219. $(MAKE) -C gperftools/ clean
  220. $(MAKE) -C tlibcrypto/ clean
  221. $(MAKE) -C tkey_exchange/ clean
  222. $(MAKE) -C ukey_exchange/ clean
  223. $(MAKE) -C protected_fs/sgx_tprotected_fs/ clean
  224. $(MAKE) -C protected_fs/sgx_uprotected_fs/ clean
  225. $(MAKE) -C debugger_interface/linux/ clean
  226. $(MAKE) -C sample_libcrypto/ clean
  227. $(MAKE) -C simulation/ clean
  228. $(MAKE) -C sign_tool/SignTool clean
  229. $(MAKE) -C edger8r/linux clean
  230. @$(RM) $(LIBTLIBC) $(LIBTLIBCXX) $(LIBTSE)
  231. @$(RM) $(BUILD_DIR)/STLport_Changes_SGX.txt
  232. @$(RM) $(BUILD_DIR)/libc++_Changes_SGX.txt