diff options
author | c+1 | 2023-10-29 17:39:52 -0400 |
---|---|---|
committer | c+1 | 2023-10-29 17:39:52 -0400 |
commit | 3dae87a760b08aec3f11a757b20a86a74dcf51c8 (patch) | |
tree | 24ba551d3e5aabdec223867ebdc7155c76e830a1 /Makefile | |
parent | 88f4ca6ea3cd758faffd7e3e2a70569e365bc707 (diff) |
return of the parser
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |