From 56ea63cdff640b13ee240b1c77f36bc2c42926f5 Mon Sep 17 00:00:00 2001 From: Quinn Date: Thu, 13 Mar 2025 14:29:48 +0100 Subject: [PATCH] remove emscripten compilation, as it's largely unused --- makefile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/makefile b/makefile index 23c58b6..bc45381 100644 --- a/makefile +++ b/makefile @@ -42,11 +42,8 @@ CFLAGS += -target x86_64-pc-linux-gnu else ifeq ($(ARCH),win-x86_64) CFLAGS += -target x86_64-pc-windows-gnu EXT=.exe -else ifeq ($(ARCH),web) -CC=emcc -EXT=.html else -$(error you must set the ARCH environment variable to either 'linux-x86_64', 'win-x86_64' or 'web') +$(error you must set the ARCH environment variable to one of these: 'linux-x86_64' 'win-x86_64') endif # compiles and execute the binary