diff options
author | Thing1 <thing1@seacrossedlovers.xyz> | 2024-09-13 15:48:02 +0100 |
---|---|---|
committer | Thing1 <thing1@seacrossedlovers.xyz> | 2024-09-13 15:48:02 +0100 |
commit | 4e3b919602046dd22d69c8d58839cb33b62b1a85 (patch) | |
tree | 3f405017b6b9b56b2e45eaf0c0f935fa59b18d41 /comp/lucas-standen-NEA/code2/Makefile | |
parent | 1f5da5a858d1dfe1052b9f0ba8daef827b3e0c9e (diff) |
implemeted an allocator and defering memory manager
Diffstat (limited to 'comp/lucas-standen-NEA/code2/Makefile')
-rw-r--r-- | comp/lucas-standen-NEA/code2/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/comp/lucas-standen-NEA/code2/Makefile b/comp/lucas-standen-NEA/code2/Makefile index a3aa9b2..728fa1d 100644 --- a/comp/lucas-standen-NEA/code2/Makefile +++ b/comp/lucas-standen-NEA/code2/Makefile @@ -1,5 +1,5 @@ CC = cc -CFLAGS = -O3 +CFLAGS = -O0 -ggdb all: _zpy _parser _tokenizer _comp _appendsnprintf _util _debug ${CC} zpy.o parser.o tokenizer.o comp.o appendsnprintf.o util.o debug.o -o zpy ${CFLAGS} |