aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorc2024-04-16 15:11:11 -0400
committerc2024-04-16 15:11:11 -0400
commit2e6d3b3343f8e51bc2f3749017ee8a22d7e8b2f6 (patch)
tree1934dbff693f0d89e1e9dcce0be0bbde2d7bc176 /Makefile
parent2a80ebb87b3d2b84fb2afe66e8a91f19414d24da (diff)
Something happened.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index a0b6488..0812c55 100644
--- a/Makefile
+++ b/Makefile
@@ -7,7 +7,7 @@ DBG_CFLAGS += -Wall -Wextra -Wformat -Wpedantic
DBG_CFLAGS += -fsanitize=address -fno-omit-frame-pointer -DDBG
CFLAGS := none
SRCS := $(wildcard src/*.c)
-# SRCS := $(filter-out %doer.c,$(SRCS)) # Filter out incomplete doer for now.
+SRCS := $(filter-out %stack.c,$(SRCS)) # Filter out unused stack code.
OBJS := $(SRCS:.c=.o)
TEST_SRCS := $(wildcard test/*.c)
TEST_OUTS := $(TEST_SRCS:.c=.out)