From 84d694a0320e8a0e7f4f3f0401c2d2d8ff58166e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Branimir=20Karad=C5=BEi=C4=87?= Date: Mon, 16 Apr 2018 22:13:21 -0700 Subject: [PATCH] Removed 32-bit from Linux build. --- makefile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/makefile b/makefile index d7c51af4b..5997d37f1 100644 --- a/makefile +++ b/makefile @@ -92,15 +92,11 @@ asmjs: asmjs-debug asmjs-release ## Build - Emscripten Debug and Release .build/projects/gmake-linux: $(GENIE) --with-tools --with-combined-examples --with-shared-lib --gcc=linux-gcc gmake -linux-debug32: .build/projects/gmake-linux ## Build - Linux x86 Debug - $(MAKE) -R -C .build/projects/gmake-linux config=debug32 -linux-release32: .build/projects/gmake-linux ## Build - Linux x86 Release - $(MAKE) -R -C .build/projects/gmake-linux config=release32 linux-debug64: .build/projects/gmake-linux ## Build - Linux x64 Debug $(MAKE) -R -C .build/projects/gmake-linux config=debug64 linux-release64: .build/projects/gmake-linux ## Build - Linux x64 Release $(MAKE) -R -C .build/projects/gmake-linux config=release64 -linux: linux-debug32 linux-release32 linux-debug64 linux-release64 ## Build - Linux x86/x64 Debug and Release +linux: linux-debug64 linux-release64 ## Build - Linux x86/x64 Debug and Release .build/projects/gmake-freebsd: $(GENIE) --with-tools --with-combined-examples --with-shared-lib --gcc=freebsd gmake