makefile 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357
  1. #
  2. # Copyright 2011-2021 Branimir Karadzic. All rights reserved.
  3. # License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  4. #
  5. UNAME := $(shell uname)
  6. ifeq ($(UNAME),$(filter $(UNAME),Linux Darwin FreeBSD GNU/kFreeBSD))
  7. ifeq ($(UNAME),$(filter $(UNAME),Darwin))
  8. OS=darwin
  9. else
  10. ifeq ($(UNAME),$(filter $(UNAME),FreeBSD GNU/kFreeBSD))
  11. OS=bsd
  12. else
  13. OS=linux
  14. endif
  15. endif
  16. help:
  17. @echo Available targets:
  18. @grep -E "^[a-zA-Z0-9_-]+:.*?## .*$$" $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
  19. else
  20. OS=windows
  21. help: projgen
  22. endif
  23. # $(info $(OS))
  24. BX_DIR?=../bx
  25. GENIE?=$(BX_DIR)/tools/bin/$(OS)/genie $(EXTRA_GENIE_ARGS)
  26. NINJA?=$(BX_DIR)/tools/bin/$(OS)/ninja
  27. .PHONY: help
  28. clean: ## Clean all intermediate files.
  29. @echo Cleaning...
  30. -@rm -rf .build
  31. @mkdir .build
  32. projgen: ## Generate project files for all configurations.
  33. $(GENIE) --with-tools --with-combined-examples --with-shared-lib vs2017
  34. $(GENIE) --with-tools --with-combined-examples --vs=winstore100 vs2017
  35. $(GENIE) --with-tools --with-combined-examples --with-shared-lib --gcc=mingw-gcc gmake
  36. $(GENIE) --with-tools --with-combined-examples --with-shared-lib --gcc=linux-gcc gmake
  37. $(GENIE) --with-tools --with-combined-examples --with-shared-lib --gcc=osx-x64 gmake
  38. $(GENIE) --with-tools --with-combined-examples --with-shared-lib --gcc=osx-arm64 gmake
  39. $(GENIE) --with-tools --with-combined-examples --with-shared-lib --xcode=osx xcode9
  40. $(GENIE) --with-tools --with-combined-examples --with-shared-lib --xcode=ios xcode9
  41. $(GENIE) --with-combined-examples --with-shared-lib --gcc=freebsd gmake
  42. $(GENIE) --with-combined-examples --gcc=android-arm gmake
  43. $(GENIE) --with-combined-examples --gcc=android-arm64 gmake
  44. $(GENIE) --with-combined-examples --gcc=android-x86 gmake
  45. $(GENIE) --with-examples --gcc=wasm2js gmake
  46. $(GENIE) --with-combined-examples --gcc=ios-arm gmake
  47. $(GENIE) --with-combined-examples --gcc=ios-arm64 gmake
  48. $(GENIE) --with-combined-examples --gcc=ios-simulator gmake
  49. $(GENIE) --with-combined-examples --gcc=ios-simulator64 gmake
  50. $(GENIE) --with-combined-examples --gcc=rpi gmake
  51. idl: ## Generate code from IDL.
  52. @echo Generating code from IDL.
  53. cd scripts && ../$(GENIE) idl
  54. .build/projects/gmake-android-arm:
  55. $(GENIE) --gcc=android-arm gmake
  56. android-arm-debug: .build/projects/gmake-android-arm ## Build - Android ARM Debug
  57. $(MAKE) -R -C .build/projects/gmake-android-arm config=debug
  58. android-arm-release: .build/projects/gmake-android-arm ## Build - Android ARM Release
  59. $(MAKE) -R -C .build/projects/gmake-android-arm config=release
  60. android-arm: android-arm-debug android-arm-release ## Build - Android ARM Debug and Release
  61. .build/projects/gmake-android-arm64:
  62. $(GENIE) --gcc=android-arm64 gmake
  63. android-arm64-debug: .build/projects/gmake-android-arm64 ## Build - Android ARM64 Debug
  64. $(MAKE) -R -C .build/projects/gmake-android-arm64 config=debug
  65. android-arm64-release: .build/projects/gmake-android-arm64 ## Build - Android ARM64 Release
  66. $(MAKE) -R -C .build/projects/gmake-android-arm64 config=release
  67. android-arm64: android-arm64-debug android-arm64-release ## Build - Android ARM64 Debug and Release
  68. .build/projects/gmake-android-x86:
  69. $(GENIE) --gcc=android-x86 gmake
  70. android-x86-debug: .build/projects/gmake-android-x86 ## Build - Android x86 Debug and Release
  71. $(MAKE) -R -C .build/projects/gmake-android-x86 config=debug
  72. android-x86-release: .build/projects/gmake-android-x86 ## Build - Android x86 Debug and Release
  73. $(MAKE) -R -C .build/projects/gmake-android-x86 config=release
  74. android-x86: android-x86-debug android-x86-release ## Build - Android x86 Debug and Release
  75. .build/projects/gmake-wasm2js: # Wasm2JS: The JavaScript fallback for web builds when Wasm is not supported by browser
  76. $(GENIE) --gcc=wasm2js --with-combined-examples gmake
  77. wasm2js-debug: .build/projects/gmake-wasm2js ## Build - Emscripten Debug
  78. $(MAKE) -R -C .build/projects/gmake-wasm2js config=debug
  79. wasm2js-release: .build/projects/gmake-wasm2js ## Build - Emscripten Release
  80. $(MAKE) -R -C .build/projects/gmake-wasm2js config=release
  81. wasm2js: wasm2js-debug wasm2js-release ## Build - Emscripten Debug and Release
  82. .build/projects/gmake-wasm:
  83. $(GENIE) --gcc=wasm --with-combined-examples gmake
  84. wasm-debug: .build/projects/gmake-wasm ## Build - Emscripten Debug
  85. $(MAKE) -R -C .build/projects/gmake-wasm config=debug
  86. wasm-release: .build/projects/gmake-wasm ## Build - Emscripten Release
  87. $(MAKE) -R -C .build/projects/gmake-wasm config=release
  88. wasm: wasm-debug wasm-release ## Build - Emscripten Debug and Release
  89. .build/projects/gmake-linux:
  90. $(GENIE) --with-tools --with-combined-examples --with-shared-lib --gcc=linux-gcc gmake
  91. linux-debug64: .build/projects/gmake-linux ## Build - Linux x64 Debug
  92. $(MAKE) -R -C .build/projects/gmake-linux config=debug64
  93. linux-release64: .build/projects/gmake-linux ## Build - Linux x64 Release
  94. $(MAKE) -R -C .build/projects/gmake-linux config=release64
  95. linux: linux-debug64 linux-release64 ## Build - Linux x86/x64 Debug and Release
  96. .build/projects/gmake-freebsd:
  97. $(GENIE) --with-tools --with-combined-examples --with-shared-lib --gcc=freebsd gmake
  98. freebsd-debug32: .build/projects/gmake-freebsd ## Build - FreeBSD x86 Debug
  99. $(MAKE) -R -C .build/projects/gmake-freebsd config=debug32
  100. freebsd-release32: .build/projects/gmake-freebsd ## Build - FreeBSD x86 Release
  101. $(MAKE) -R -C .build/projects/gmake-freebsd config=release32
  102. freebsd-debug64: .build/projects/gmake-freebsd ## Build - FreeBSD x86 Debug
  103. $(MAKE) -R -C .build/projects/gmake-freebsd config=debug64
  104. freebsd-release64: .build/projects/gmake-freebsd ## Build - FreeBSD x86 Release
  105. $(MAKE) -R -C .build/projects/gmake-freebsd config=release64
  106. freebsd: freebsd-debug32 freebsd-release32 freebsd-debug64 freebsd-release64 ## Build - FreeBSD x86/x64 Debug and Release
  107. .build/projects/gmake-mingw-gcc:
  108. $(GENIE) --with-tools --with-combined-examples --with-shared-lib --os=windows --gcc=mingw-gcc gmake
  109. mingw-gcc-debug32: .build/projects/gmake-mingw-gcc ## Build - MinGW GCC x86 Debug
  110. $(MAKE) -R -C .build/projects/gmake-mingw-gcc config=debug32
  111. mingw-gcc-release32: .build/projects/gmake-mingw-gcc ## Build - MinGW GCC x86 Release
  112. $(MAKE) -R -C .build/projects/gmake-mingw-gcc config=release32
  113. mingw-gcc-debug64: .build/projects/gmake-mingw-gcc ## Build - MinGW GCC x64 Debug
  114. $(MAKE) -R -C .build/projects/gmake-mingw-gcc config=debug64
  115. mingw-gcc-release64: .build/projects/gmake-mingw-gcc ## Build - MinGW GCC x64 Release
  116. $(MAKE) -R -C .build/projects/gmake-mingw-gcc config=release64
  117. mingw-gcc: mingw-gcc-debug32 mingw-gcc-release32 mingw-gcc-debug64 mingw-gcc-release64 ## Build - MinGW GCC x86/x64 Debug and Release
  118. .build/projects/gmake-mingw-clang:
  119. $(GENIE) --gcc=mingw-clang gmake
  120. mingw-clang-debug32: .build/projects/gmake-mingw-clang ## Build - MinGW Clang x86 Debug
  121. $(MAKE) -R -C .build/projects/gmake-mingw-clang config=debug32
  122. mingw-clang-release32: .build/projects/gmake-mingw-clang ## Build - MinGW Clang x86 Release
  123. $(MAKE) -R -C .build/projects/gmake-mingw-clang config=release32
  124. mingw-clang-debug64: .build/projects/gmake-mingw-clang ## Build - MinGW Clang x64 Debug
  125. $(MAKE) -R -C .build/projects/gmake-mingw-clang config=debug64
  126. mingw-clang-release64: .build/projects/gmake-mingw-clang ## Build - MinGW Clang x64 Release
  127. $(MAKE) -R -C .build/projects/gmake-mingw-clang config=release64
  128. mingw-clang: mingw-clang-debug32 mingw-clang-release32 mingw-clang-debug64 mingw-clang-release64 ## Build - MinGW Clang x86/x64 Debug and Release
  129. .build/projects/vs2017:
  130. $(GENIE) --with-tools --with-combined-examples --with-shared-lib vs2017
  131. vs2017-debug32: .build/projects/vs2017 ## Build - vs2017 x86 Debug
  132. devenv .build/projects/vs2017/bgfx.sln /Build "Debug|Win32"
  133. vs2017-release32: .build/projects/vs2017 ## Build - vs2017 x86 Release
  134. devenv .build/projects/vs2017/bgfx.sln /Build "Release|Win32"
  135. vs2017-debug64: .build/projects/vs2017 ## Build - vs2017 x64 Debug
  136. devenv .build/projects/vs2017/bgfx.sln /Build "Debug|x64"
  137. vs2017-release64: .build/projects/vs2017 ## Build - vs2017 x64 Release
  138. devenv .build/projects/vs2017/bgfx.sln /Build "Release|x64"
  139. vs2017: vs2017-debug32 vs2017-release32 vs2017-debug64 vs2017-release64 ## Build - vs2017 x86/x64 Debug and Release
  140. .build/projects/vs2017-winstore100:
  141. $(GENIE) --with-combined-examples --vs=winstore100 vs2017
  142. vs2017-winstore100-debug32: .build/projects/vs2017-winstore100 ## Build - vs2017-winstore100 x86 Debug
  143. devenv .build/projects/vs2017-winstore100/bgfx.sln /Build "Debug|Win32"
  144. vs2017-winstore100-release32: .build/projects/vs2017-winstore100 ## Build - vs2017-winstore100 x86 Release
  145. devenv .build/projects/vs2017-winstore100/bgfx.sln /Build "Release|Win32"
  146. vs2017-winstore100-debug64: .build/projects/vs2017-winstore100 ## Build - vs2017-winstore100 x64 Debug
  147. devenv .build/projects/vs2017-winstore100/bgfx.sln /Build "Debug|x64"
  148. vs2017-winstore100-release64: .build/projects/vs2017-winstore100 ## Build - vs2017-winstore100 x64 Release
  149. devenv .build/projects/vs2017-winstore100/bgfx.sln /Build "Release|x64"
  150. vs2017-winstore100: vs2017-winstore100-debug32 vs2017-winstore100-release32 vs2017-winstore100-debug64 vs2017-winstore100-release64 ## Build - vs2017-winstore100 x86/x64 Debug and Release
  151. .build/projects/gmake-osx-x64:
  152. $(GENIE) --with-tools --with-combined-examples --with-shared-lib --gcc=osx-x64 gmake
  153. .build/projects/gmake-osx-arm64:
  154. $(GENIE) --with-tools --with-combined-examples --with-shared-lib --gcc=osx-arm64 gmake
  155. osx-debug: osx-x64-debug osx-arm64-debug ## Build - macOS Universal Debug
  156. osx-release: osx-x64-release osx-arm64-release ## Build - macOS Universal Release
  157. osx: osx-debug osx-release ## Build - macOS Universal Debug and Release
  158. osx-x64-debug: .build/projects/gmake-osx-x64 ## Build - macOS x64 Debug
  159. $(MAKE) -C .build/projects/gmake-osx-x64 config=debug
  160. osx-x64-release: .build/projects/gmake-osx-x64 ## Build - macOS x64 Release
  161. $(MAKE) -C .build/projects/gmake-osx-x64 config=release
  162. osx-x64: osx-x64-debug osx-x64-release ## Build - macOS x64 Debug and Release
  163. osx-arm64-debug: .build/projects/gmake-osx-arm64 ## Build - macOS ARM Debug
  164. $(MAKE) -C .build/projects/gmake-osx-arm64 config=debug
  165. osx-arm64-release: .build/projects/gmake-osx-arm64 ## Build - macOS ARM Release
  166. $(MAKE) -C .build/projects/gmake-osx-arm64 config=release
  167. osx-arm: osx-arm64-debug osx-arm64-release ## Build - macOS ARM Debug and Release
  168. .build/projects/gmake-ios-arm:
  169. $(GENIE) --gcc=ios-arm gmake
  170. ios-arm-debug: .build/projects/gmake-ios-arm ## Build - iOS ARM Debug
  171. $(MAKE) -R -C .build/projects/gmake-ios-arm config=debug
  172. ios-arm-release: .build/projects/gmake-ios-arm ## Build - iOS ARM Release
  173. $(MAKE) -R -C .build/projects/gmake-ios-arm config=release
  174. ios-arm: ios-arm-debug ios-arm-release ## Build - iOS ARM Debug and Release
  175. .build/projects/gmake-ios-arm64:
  176. $(GENIE) --gcc=ios-arm64 gmake
  177. ios-arm64-debug: .build/projects/gmake-ios-arm64 ## Build - iOS ARM64 Debug
  178. $(MAKE) -R -C .build/projects/gmake-ios-arm64 config=debug
  179. ios-arm64-release: .build/projects/gmake-ios-arm64 ## Build - iOS ARM64 Release
  180. $(MAKE) -R -C .build/projects/gmake-ios-arm64 config=release
  181. ios-arm64: ios-arm64-debug ios-arm64-release ## Build - iOS ARM64 Debug and Release
  182. .build/projects/gmake-ios-simulator:
  183. $(GENIE) --gcc=ios-simulator gmake
  184. ios-simulator-debug: .build/projects/gmake-ios-simulator ## Build - iOS Simulator Debug
  185. $(MAKE) -R -C .build/projects/gmake-ios-simulator config=debug
  186. ios-simulator-release: .build/projects/gmake-ios-simulator ## Build - iOS Simulator Release
  187. $(MAKE) -R -C .build/projects/gmake-ios-simulator config=release
  188. ios-simulator: ios-simulator-debug ios-simulator-release ## Build - iOS Simulator Debug and Release
  189. .build/projects/gmake-ios-simulator64:
  190. $(GENIE) --gcc=ios-simulator64 gmake
  191. ios-simulator64-debug: .build/projects/gmake-ios-simulator64 ## Build - iOS Simulator Debug
  192. $(MAKE) -R -C .build/projects/gmake-ios-simulator64 config=debug
  193. ios-simulator64-release: .build/projects/gmake-ios-simulator64 ## Build - iOS Simulator Release
  194. $(MAKE) -R -C .build/projects/gmake-ios-simulator64 config=release
  195. ios-simulator64: ios-simulator64-debug ios-simulator64-release ## Build - iOS Simulator Debug and Release
  196. .build/projects/gmake-rpi:
  197. $(GENIE) --gcc=rpi gmake
  198. rpi-debug: .build/projects/gmake-rpi ## Build - RasberryPi Debug
  199. $(MAKE) -R -C .build/projects/gmake-rpi config=debug
  200. rpi-release: .build/projects/gmake-rpi ## Build - RasberryPi Release
  201. $(MAKE) -R -C .build/projects/gmake-rpi config=release
  202. rpi: rpi-debug rpi-release ## Build - RasberryPi Debug and Release
  203. build-darwin: osx-x64
  204. build-linux: linux-debug64 linux-release64
  205. build-windows: mingw-gcc
  206. build: build-$(OS)
  207. rebuild-shaders:
  208. $(MAKE) -R -C examples rebuild
  209. assets: # Build assets.
  210. $(NINJA) -C scripts
  211. analyze:
  212. cppcheck src/
  213. cppcheck examples/
  214. docs:
  215. doxygen scripts/bgfx.doxygen
  216. markdown README.md > .build/docs/readme.html
  217. ###
  218. SILENT ?= @
  219. UNAME := $(shell uname)
  220. ifeq ($(UNAME),$(filter $(UNAME),Linux Darwin FreeBSD GNU/kFreeBSD))
  221. ifeq ($(UNAME),$(filter $(UNAME),Darwin))
  222. OS=darwin
  223. BUILD_PROJECT_DIR=gmake-osx-x64
  224. BUILD_OUTPUT_DIR=osx-x64
  225. BUILD_TOOLS_CONFIG=release
  226. BUILD_TOOLS_SUFFIX=Release
  227. EXE=
  228. else
  229. ifeq ($(UNAME),$(filter $(UNAME),FreeBSD GNU/kFreeBSD))
  230. OS=bsd
  231. BUILD_PROJECT_DIR=gmake-freebsd
  232. BUILD_OUTPUT_DIR=freebsd64_gcc
  233. BUILD_TOOLS_CONFIG=release64
  234. BUILD_TOOLS_SUFFIX=Release
  235. EXE=
  236. else
  237. OS=linux
  238. BUILD_PROJECT_DIR=gmake-linux
  239. BUILD_OUTPUT_DIR=linux64_gcc
  240. BUILD_TOOLS_CONFIG=release64
  241. BUILD_TOOLS_SUFFIX=Release
  242. EXE=
  243. endif
  244. endif
  245. else
  246. OS=windows
  247. BUILD_PROJECT_DIR=gmake-mingw-gcc
  248. BUILD_OUTPUT_DIR=win64_mingw-gcc
  249. BUILD_TOOLS_CONFIG=release64
  250. BUILD_TOOLS_SUFFIX=Release
  251. EXE=.exe
  252. endif
  253. geometryc: .build/projects/$(BUILD_PROJECT_DIR) ## Build geometryc tool.
  254. $(SILENT) $(MAKE) -C .build/projects/$(BUILD_PROJECT_DIR) geometryc config=$(BUILD_TOOLS_CONFIG)
  255. $(SILENT) cp .build/$(BUILD_OUTPUT_DIR)/bin/geometryc$(BUILD_TOOLS_SUFFIX)$(EXE) tools/bin/$(OS)/geometryc$(EXE)
  256. geometryv: .build/projects/$(BUILD_PROJECT_DIR) ## Build geometryv tool.
  257. $(SILENT) $(MAKE) -C .build/projects/$(BUILD_PROJECT_DIR) geometryv config=$(BUILD_TOOLS_CONFIG)
  258. $(SILENT) cp .build/$(BUILD_OUTPUT_DIR)/bin/geometryv$(BUILD_TOOLS_SUFFIX)$(EXE) tools/bin/$(OS)/geometryv$(EXE)
  259. shaderc: .build/projects/$(BUILD_PROJECT_DIR) ## Build shaderc tool.
  260. $(SILENT) $(MAKE) -C .build/projects/$(BUILD_PROJECT_DIR) shaderc config=$(BUILD_TOOLS_CONFIG)
  261. $(SILENT) cp .build/$(BUILD_OUTPUT_DIR)/bin/shaderc$(BUILD_TOOLS_SUFFIX)$(EXE) tools/bin/$(OS)/shaderc$(EXE)
  262. texturec: .build/projects/$(BUILD_PROJECT_DIR) ## Build texturec tool.
  263. $(SILENT) $(MAKE) -C .build/projects/$(BUILD_PROJECT_DIR) texturec config=$(BUILD_TOOLS_CONFIG)
  264. $(SILENT) cp .build/$(BUILD_OUTPUT_DIR)/bin/texturec$(BUILD_TOOLS_SUFFIX)$(EXE) tools/bin/$(OS)/texturec$(EXE)
  265. texturev: .build/projects/$(BUILD_PROJECT_DIR) ## Build texturev tool.
  266. $(SILENT) $(MAKE) -C .build/projects/$(BUILD_PROJECT_DIR) texturev config=$(BUILD_TOOLS_CONFIG)
  267. $(SILENT) cp .build/$(BUILD_OUTPUT_DIR)/bin/texturev$(BUILD_TOOLS_SUFFIX)$(EXE) tools/bin/$(OS)/texturev$(EXE)
  268. tools: geometryc geometryv shaderc texturec texturev ## Build tools.
  269. clean-tools: ## Clean tools projects.
  270. -$(SILENT) rm -r .build/projects/$(BUILD_PROJECT_DIR)
  271. dist-windows: .build/projects/gmake-mingw-gcc
  272. $(SILENT) $(MAKE) -C .build/projects/gmake-mingw-gcc config=release64 -j 6 geometryc
  273. $(SILENT) cp .build/win64_mingw-gcc/bin/geometrycRelease.exe tools/bin/windows/geometryc.exe
  274. $(SILENT) $(MAKE) -C .build/projects/gmake-mingw-gcc config=release64 -j 6 geometryv
  275. $(SILENT) cp .build/win64_mingw-gcc/bin/geometryvRelease.exe tools/bin/windows/geometryv.exe
  276. $(SILENT) $(MAKE) -C .build/projects/gmake-mingw-gcc config=release64 -j 6 shaderc
  277. $(SILENT) cp .build/win64_mingw-gcc/bin/shadercRelease.exe tools/bin/windows/shaderc.exe
  278. $(SILENT) $(MAKE) -C .build/projects/gmake-mingw-gcc config=release64 -j 6 texturec
  279. $(SILENT) cp .build/win64_mingw-gcc/bin/texturecRelease.exe tools/bin/windows/texturec.exe
  280. $(SILENT) $(MAKE) -C .build/projects/gmake-mingw-gcc config=release64 -j 6 texturev
  281. $(SILENT) cp .build/win64_mingw-gcc/bin/texturevRelease.exe tools/bin/windows/texturev.exe
  282. dist-linux: .build/projects/gmake-linux
  283. $(SILENT) $(MAKE) -C .build/projects/gmake-linux config=release64 -j 6 geometryc
  284. $(SILENT) cp .build/linux64_gcc/bin/geometrycRelease tools/bin/linux/geometryc
  285. $(SILENT) $(MAKE) -C .build/projects/gmake-linux config=release64 -j 6 geometryv
  286. $(SILENT) cp .build/linux64_gcc/bin/geometryvRelease tools/bin/linux/geometryv
  287. $(SILENT) $(MAKE) -C .build/projects/gmake-linux config=release64 -j 6 shaderc
  288. $(SILENT) cp .build/linux64_gcc/bin/shadercRelease tools/bin/linux/shaderc
  289. $(SILENT) $(MAKE) -C .build/projects/gmake-linux config=release64 -j 6 texturec
  290. $(SILENT) cp .build/linux64_gcc/bin/texturecRelease tools/bin/linux/texturec
  291. $(SILENT) $(MAKE) -C .build/projects/gmake-linux config=release64 -j 6 texturev
  292. $(SILENT) cp .build/linux64_gcc/bin/texturevRelease tools/bin/linux/texturev
  293. dist-darwin: .build/projects/gmake-osx-x64
  294. $(SILENT) $(MAKE) -C .build/projects/gmake-osx-x64 config=release -j 6 geometryc
  295. $(SILENT) cp .build/osx-x64/bin/geometrycRelease tools/bin/darwin/geometryc
  296. $(SILENT) $(MAKE) -C .build/projects/gmake-osx-x64 config=release -j 6 geometryv
  297. $(SILENT) cp .build/osx-x64/bin/geometryvRelease tools/bin/darwin/geometryv
  298. $(SILENT) $(MAKE) -C .build/projects/gmake-osx-x64 config=release -j 6 shaderc
  299. $(SILENT) cp .build/osx-x64/bin/shadercRelease tools/bin/darwin/shaderc
  300. $(SILENT) $(MAKE) -C .build/projects/gmake-osx-x64 config=release -j 6 texturec
  301. $(SILENT) cp .build/osx-x64/bin/texturecRelease tools/bin/darwin/texturec
  302. $(SILENT) $(MAKE) -C .build/projects/gmake-osx-x64 config=release -j 6 texturev
  303. $(SILENT) cp .build/osx-x64/bin/texturevRelease tools/bin/darwin/texturev
  304. dist: clean dist-windows dist-linux dist-darwin