aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorc+12023-10-29 17:39:52 -0400
committerc+12023-10-29 17:39:52 -0400
commit3dae87a760b08aec3f11a757b20a86a74dcf51c8 (patch)
tree24ba551d3e5aabdec223867ebdc7155c76e830a1 /Makefile
parent88f4ca6ea3cd758faffd7e3e2a70569e365bc707 (diff)
return of the parser
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index d9602c2..c948a26 100644
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,7 @@ REG_CFLAGS := -std=c99 -O3 -s
DBG_CFLAGS := -Og -ggdb -pedantic -Wall -Wno-deprecated-declarations -fsanitize=leak,address,undefined -fno-omit-frame-pointer
CFLAGS := ${REG_CFLAGS}
SRCS := $(wildcard src/*.c)
-SRCS := $(filter-out src/parser.c, $(SRCS))
+# SRCS := $(filter-out src/parser.c, $(SRCS))
OBJS := $(SRCS:.c=.o)
all: halk