From 321b06ca0d4b6a71732b7c282533b9597d08a1b0 Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Thu, 29 Jan 2026 04:12:46 +0000 Subject: [PATCH] Makefile: modules is now dynamically found --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f5e6864..9423ff8 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ CC=cc DIST=build OUT=$(DIST)/arl.out -MODULES=. lib lexer +MODULES=$(shell cd include/arl; find . -type 'd' -printf "%f\n") UNITS=main cli lib/vec lib/sv lexer/token lexer/lexer OBJECTS:=$(patsubst %,$(DIST)/%.o, $(UNITS))