From b5a61cc564824de6fd682a2a184d2d46672f563c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A1s=20Szab=C3=B3?= <34127628+firolightfog@users.noreply.github.com> Date: Tue, 13 Jan 2026 16:48:03 +0100 Subject: [PATCH] Disable VULT, LIBPD, and FAUST in Makefile Updated configuration options for VULT, LIBPD, and FAUST to be disabled by default. --- Makefile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index b82fad7..ce10f7f 100644 --- a/Makefile +++ b/Makefile @@ -19,9 +19,9 @@ QUICKJS ?= 1 LUAJIT ?= 0 # 1 PYTHON ?= 0 SUPERCOLLIDER ?= 0 # 1 -VULT ?= 1 -LIBPD ?= 1 # 1 -FAUST ?= 1 +VULT ?= 0 # 1 +LIBPD ?= 0 # 1 +FAUST ?= 0 # 1 # Vult depends on both LuaJIT and QuickJS ifeq ($(VULT), 1) @@ -31,6 +31,7 @@ endif # Entropia File System Watcher +ifdef false #added to debug ifdef ARCH_WIN efsw := dep/lib/efsw-static-release.lib else @@ -53,7 +54,7 @@ else cd efsw && cp lib/libefsw-static-release.a $(DEP_PATH)/lib/ endif cd efsw && cp -R include/efsw $(DEP_PATH)/include/ - +end if #added to debug # Duktape ifeq ($(DUKTAPE), 1)