aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorc+12023-10-05 11:02:22 -0400
committerc+12023-10-05 11:02:22 -0400
commit668e0fb0f4fc4bdd990d9ab349da445960d5764e (patch)
treea6411de1b7806d6cb91d84158cd7bc513dee235b /Makefile
parent4d9dd289951589ddf408fdec62245b20cfe199c7 (diff)
redesign the lexer, some mem leaks :(
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
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