Makefile.source 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280
  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. # - Standalone, untrusted libraries
  50. # - libcapable: libsgx_capable.a libsgx_capable.so
  51. # - Tools
  52. # - signtool: sgx_sign
  53. # - edger8r: sgx_edger8r
  54. # - Simulation libraries and tools
  55. # - simulation: libsgx_trts_sim.a, libsgx_tservice_sim.a, libsgx_urts_sim.a, libsgx_uae_service_sim.a, sgx_config_cpusvn
  56. #
  57. include ../buildenv.mk
  58. LIBTLIBC := $(BUILD_DIR)/libsgx_tstdc.a
  59. LIBTLIBCXX := $(BUILD_DIR)/libsgx_tstdcxx.a
  60. LIBTCXX := $(BUILD_DIR)/libsgx_tcxx.a
  61. LIBTSE := $(BUILD_DIR)/libsgx_tservice.a
  62. .PHONY: all
  63. all: tstdc tstdcxx tcxx tservice trts tcrypto tkey_exchange ukey_exchange tprotected_fs uprotected_fs ptrace sample_crypto libcapable simulation signtool edger8r tsetjmp tcmalloc
  64. # ---------------------------------------------------
  65. # tstdc
  66. # includes: tlibc, libm, tlibthread, compiler-rt
  67. # ---------------------------------------------------
  68. .PHONY: tstdc
  69. tstdc: $(LIBTLIBC)
  70. $(LIBTLIBC): tlibthread compiler-rt sgx_libm
  71. $(MAKE) -C tlibc/ -j4 2> /dev/null
  72. @$(MKDIR) $(BUILD_DIR)/.libm $(BUILD_DIR)/.tlibc $(BUILD_DIR)/.tlibthread
  73. @$(RM) -f $(BUILD_DIR)/.libm/* $(BUILD_DIR)/.tlibc/* $(BUILD_DIR)/.tlibthread/*
  74. @cd $(BUILD_DIR)/.libm && $(AR) x $(LINUX_EXTERNAL_DIR)/sgx_libm/libm.a
  75. @cd $(BUILD_DIR)/.tlibc && $(AR) x $(LINUX_SDK_DIR)/tlibc/libtlibc.a
  76. @cd $(BUILD_DIR)/.tlibthread && $(AR) x $(LINUX_SDK_DIR)/tlibthread/libtlibthread.a
  77. $(CP) compiler-rt/libcompiler-rt.a $@
  78. $(AR) rsD $@ $(BUILD_DIR)/.libm/*.o $(BUILD_DIR)/.tlibc/*.o $(BUILD_DIR)/.tlibthread/*.o
  79. @$(RM) -rf $(BUILD_DIR)/.libm $(BUILD_DIR)/.tlibc $(BUILD_DIR)/.tlibthread
  80. .PHONY: tlibthread
  81. tlibthread:
  82. $(MAKE) -C tlibthread/
  83. .PHONY: compiler-rt
  84. compiler-rt:
  85. $(MAKE) -C compiler-rt/ 2> /dev/null
  86. LIBM_PATH = $(LINUX_EXTERNAL_DIR)/sgx_libm/
  87. M_ARCH = intel64
  88. ifneq ($(ARCH), x86_64)
  89. M_ARCH := ia32
  90. endif
  91. .PHONY: sgx_libm
  92. sgx_libm:
  93. $(MAKE) -C $(LIBM_PATH) ARCH=$(M_ARCH) 2> /dev/null
  94. # ---------------------------------------------------
  95. # tstdcxx
  96. # includes: cpprt, tlibstdcxx
  97. # ---------------------------------------------------
  98. .PHONY: tstdcxx
  99. tstdcxx: $(LIBTLIBCXX)
  100. $(LIBTLIBCXX): cpprt tlibstdcxx
  101. @$(MKDIR) $(BUILD_DIR)/.cpprt $(BUILD_DIR)/.tlibstdcxx
  102. @$(RM) -f $(BUILD_DIR)/.cpprt/* $(BUILD_DIR)/.tlibstdcxx/*
  103. @cd $(BUILD_DIR)/.cpprt && $(AR) x $(LINUX_SDK_DIR)/cpprt/libcpprt.a
  104. @cd $(BUILD_DIR)/.tlibstdcxx && $(AR) x $(LINUX_SDK_DIR)/tlibstdcxx/libtlibstdcxx.a
  105. $(AR) rcsD $@ $(BUILD_DIR)/.cpprt/*.o $(BUILD_DIR)/.tlibstdcxx/*.o
  106. @$(RM) -rf $(BUILD_DIR)/.cpprt $(BUILD_DIR)/.tlibstdcxx
  107. .PHONY: cpprt
  108. cpprt:
  109. $(MAKE) -C cpprt
  110. .PHONY: tlibstdcxx
  111. tlibstdcxx: $(BUILD_DIR)
  112. $(MAKE) -C tlibstdcxx/ 2> /dev/null
  113. $(CP) tlibstdcxx/README.sgx $(BUILD_DIR)/STLport_Changes_SGX.txt
  114. # ---------------------------------------------------
  115. # tcxx
  116. # includes: cpprt, tlibcxx
  117. # ---------------------------------------------------
  118. .PHONY: tcxx
  119. tcxx: $(LIBTCXX)
  120. $(LIBTCXX): cpprt tlibcxx
  121. @$(MKDIR) $(BUILD_DIR)/._cpprt $(BUILD_DIR)/.tlibcxx
  122. @$(RM) -f $(BUILD_DIR)/._cpprt/* $(BUILD_DIR)/.tlibcxx/*
  123. @cd $(BUILD_DIR)/._cpprt && $(AR) x $(LINUX_SDK_DIR)/cpprt/libcpprt.a
  124. @cd $(BUILD_DIR)/.tlibcxx && $(AR) x $(LINUX_SDK_DIR)/tlibcxx/libcxx.a
  125. $(AR) rcsD $@ $(BUILD_DIR)/._cpprt/*.o $(BUILD_DIR)/.tlibcxx/*.o
  126. @$(RM) -rf $(BUILD_DIR)/._cpprt $(BUILD_DIR)/.tlibcxx
  127. .PHONY: tlibcxx
  128. tlibcxx: $(BUILD_DIR)
  129. $(MAKE) -C tlibcxx/ 2> /dev/null
  130. $(CP) tlibcxx/README.sgx $(BUILD_DIR)/libc++_Changes_SGX.txt
  131. # ---------------------------------------------------
  132. # tse
  133. # includes: selib, tseal, tae_service, ec_dh_lib
  134. # ---------------------------------------------------
  135. .PHONY: tservice
  136. tservice: $(LIBTSE)
  137. $(LIBTSE): selib tseal tae_service
  138. @$(MKDIR) $(BUILD_DIR)/.tservice
  139. @$(RM) -f $(BUILD_DIR)/.tservice/*
  140. cd $(BUILD_DIR)/.tservice && $(AR) x $(LINUX_SDK_DIR)/tseal/linux/libtSeal.a
  141. cd $(BUILD_DIR)/.tservice && $(AR) x $(LINUX_SDK_DIR)/tae_service/libtae_service.a
  142. $(CP) $(LINUX_SDK_DIR)/selib/linux/libselib.a $@
  143. $(AR) rsD $@ $(BUILD_DIR)/.tservice/*.o
  144. @$(RM) -rf $(BUILD_DIR)/.tservice
  145. .PHONY: selib
  146. selib:
  147. $(MAKE) -C selib/linux/
  148. .PHONY: tseal
  149. tseal:
  150. $(MAKE) -C tseal/linux/
  151. .PHONY: tae_service
  152. tae_service: edger8r
  153. $(MAKE) -C tae_service
  154. # ---------------------------------------------------
  155. # Other trusted libraries
  156. # ---------------------------------------------------
  157. .PHONY: trts
  158. trts:
  159. $(MAKE) -C trts/
  160. .PHONY: tcrypto
  161. tcrypto:
  162. $(MAKE) -C tlibcrypto/
  163. .PHONY: tkey_exchange
  164. tkey_exchange: edger8r
  165. $(MAKE) -C tkey_exchange
  166. .PHONY: tsetjmp
  167. tsetjmp:
  168. $(MAKE) -C tsetjmp/
  169. .PHONY: tcmalloc
  170. tcmalloc:
  171. $(MAKE) -C gperftools/
  172. .PHONY: tprotected_fs
  173. tprotected_fs: edger8r
  174. $(MAKE) -C protected_fs/sgx_tprotected_fs
  175. # ---------------------------------------------------
  176. # Untrusted libraries
  177. # ---------------------------------------------------
  178. .PHONY: ukey_exchange
  179. ukey_exchange:
  180. $(MAKE) -C ukey_exchange
  181. .PHONY: uprotected_fs
  182. uprotected_fs: edger8r
  183. $(MAKE) -C protected_fs/sgx_uprotected_fs
  184. .PHONY: ptrace
  185. ptrace:
  186. $(MAKE) -C debugger_interface/linux/
  187. .PHONY: sample_crypto
  188. sample_crypto:
  189. $(MAKE) -C sample_libcrypto
  190. # ---------------------------------------------------
  191. # standalone, untrusted libraries
  192. # ---------------------------------------------------
  193. .PHONY: libcapable
  194. libcapable:
  195. $(MAKE) -C libcapable/linux/
  196. # ---------------------------------------------------
  197. # simualtion libraries and tools
  198. # ---------------------------------------------------
  199. .PHONY: simulation
  200. simulation: edger8r
  201. $(MAKE) -C simulation/
  202. # ---------------------------------------------------
  203. # tools
  204. # ---------------------------------------------------
  205. .PHONY: signtool
  206. signtool:
  207. $(MAKE) -C sign_tool/SignTool/
  208. .PHONY: edger8r
  209. edger8r:
  210. $(MAKE) -C edger8r/linux/
  211. $(BUILD_DIR):
  212. $(MKDIR) $@
  213. .PHONY: clean
  214. clean:
  215. $(MAKE) -C $(LIBM_PATH) ARCH=$(M_ARCH) clean
  216. $(MAKE) -C tlibc/ clean
  217. $(MAKE) -C tlibthread/ clean
  218. $(MAKE) -C compiler-rt/ clean
  219. $(MAKE) -C cpprt clean
  220. $(MAKE) -C tlibstdcxx/ clean
  221. $(MAKE) -C tlibcxx/ clean
  222. $(MAKE) -C tseal/linux/ clean
  223. $(MAKE) -C selib/linux/ clean
  224. $(MAKE) -C tae_service/ clean
  225. $(MAKE) -C trts/ clean
  226. $(MAKE) -C tsetjmp/ clean
  227. $(MAKE) -C gperftools/ clean
  228. $(MAKE) -C tlibcrypto/ clean
  229. $(MAKE) -C tkey_exchange/ clean
  230. $(MAKE) -C ukey_exchange/ clean
  231. $(MAKE) -C protected_fs/sgx_tprotected_fs/ clean
  232. $(MAKE) -C protected_fs/sgx_uprotected_fs/ clean
  233. $(MAKE) -C debugger_interface/linux/ clean
  234. $(MAKE) -C sample_libcrypto/ clean
  235. $(MAKE) -C libcapable/linux/ clean
  236. $(MAKE) -C simulation/ clean
  237. $(MAKE) -C sign_tool/SignTool clean
  238. $(MAKE) -C edger8r/linux clean
  239. @$(RM) $(LIBTLIBC) $(LIBTLIBCXX) $(LIBTSE)
  240. @$(RM) $(BUILD_DIR)/STLport_Changes_SGX.txt
  241. @$(RM) $(BUILD_DIR)/libc++_Changes_SGX.txt