diff options
author | standenboy <standenboy@seacrossedlovers.xyz> | 2024-05-07 15:00:06 +0100 |
---|---|---|
committer | standenboy <standenboy@seacrossedlovers.xyz> | 2024-05-07 15:00:06 +0100 |
commit | 907e5ad4c33efe2c9e35ba60b3fe7979e1120166 (patch) | |
tree | 4b370f5bded11f24ef382062c3dc57a3a85616cb /comp/lucas-standen-NEA/code/proto/ast/Makefile | |
parent | f6545306458de107e5ad08a3a2dc54e6d1bbc780 (diff) |
fixed mem leak in proto
Diffstat (limited to 'comp/lucas-standen-NEA/code/proto/ast/Makefile')
-rw-r--r-- | comp/lucas-standen-NEA/code/proto/ast/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/comp/lucas-standen-NEA/code/proto/ast/Makefile b/comp/lucas-standen-NEA/code/proto/ast/Makefile index e11e20f..6074b00 100644 --- a/comp/lucas-standen-NEA/code/proto/ast/Makefile +++ b/comp/lucas-standen-NEA/code/proto/ast/Makefile @@ -1,4 +1,4 @@ all: astg ast.c - cc ast.c astg.o -o ast + cc -ggdb ast.c astg.o -o ast astg: astg.c - cc astg.c -c -o astg.o + cc -ggdb astg.c -c -o astg.o |