From 668e0fb0f4fc4bdd990d9ab349da445960d5764e Mon Sep 17 00:00:00 2001 From: c+1 Date: Thu, 5 Oct 2023 11:02:22 -0400 Subject: redesign the lexer, some mem leaks :( --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 3b0de22..63a5068 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ CC := gcc FLAGS := -O3 -s DEVFLAGS := -ggdb -fsanitize=leak,address,undefined -fno-omit-frame-pointer SRCS := $(wildcard src/*.c) -#SRCS := $(filter-out src/parser.c, $(SRCS)) # exclude the incomplete parser for now. +SRCS := $(filter-out src/parser.c, $(SRCS)) # exclude the incomplete parser for now. OBJS := $(SRCS:.c=.o) all: options HALK -- cgit v1.2.3